MCP Tester
Try the MCP server in your browser.
Sends real JSON-RPC 2.0 requests to /api/mcp. Pick a method, fill in arguments, and inspect the response.
Want config snippets for Claude / Cursor / Cline / Windsurf? See /mcp-docs.
Request body
POST /api/mcp{
"jsonrpc": "2.0",
"method": "initialize",
"params": {
"protocolVersion": "2024-11-05",
"capabilities": {},
"clientInfo": {
"name": "mcp-test",
"version": "1.0"
}
},
"id": 1778602441865
}Response
IdlePick a method and click Send.Tips
- Start with
initialize. A real client must send it first; this tester sends each call independently. tools/callresults come back as acontentarray of{ type: "text", text }entries. Parse thetextfield as JSON.resources/listreturns all 278 entries — that's a big payload.evaluateFitis the slowest call (an LLM round-trip). The others should return in under 200 ms.
