From 8c657b0578e7bd10207fcd20369d46b27625fbbe Mon Sep 17 00:00:00 2001 From: bendtherules Date: Tue, 21 Apr 2026 09:17:57 +0530 Subject: [PATCH] docs(readme): add MCP Inspector UI guide and list HTTP server endpoints. --- Readme.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/Readme.md b/Readme.md index 254f4fd..d4c8b95 100644 --- a/Readme.md +++ b/Readme.md @@ -46,6 +46,10 @@ Use the hosted MCP server without any local setup: } ``` +**Experiment with the Inspector:** + +Visit `https://ask262.bendtherules.in/` to access the MCP Inspector UI. This provides an interactive interface to test all available tools with custom inputs. + ## Local Installation ### Prerequisites @@ -157,6 +161,16 @@ bun run ask262-http # start HTTP server bun run ask262-http # start HTTP server ``` +**HTTP Server Endpoints:** + +| Endpoint | Description | +|----------|-------------| +| `GET /health` | Health check | +| `GET/POST /mcp` | MCP protocol endpoint | +| `GET /` | MCP Inspector UI (auto-connects to /mcp) | + +*Note: `/mcp` is defined before the inspector's catch-all `/` route to ensure proper request handling.* + ## Testing ```bash