mcp_exam_server

24f2004747/mcp_exam_server
★ 0 stars Unknown language Communication Updated today
An MCP server.
View on GitHub → 🔍 Audit Wallet Slippage →

Quick Install

Copy the config for your editor. Some servers may need additional setup — check the README.

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "mcp_exam_server": {
      "command": "npx",
      "args": [
        "-y",
        "24f2004747/mcp_exam_server"
      ]
    }
  }
}

README Excerpt

from fastapi import FastAPI, Request from fastmcp import FastMCP import hashlib EMAIL="[email protected]".strip().lower() mcp=FastMCP("exam-server") @mcp.tool(name="solve_challenge") async def solve_challenge(request: Request): challenge=request.headers.get("X-Exam-Challenge","") digest=hashlib.sha256(f"{challenge}:{EMAIL}".encode()).hexdigest()[:16]

Tools (1)

solve_challenge