docs(readme): add MCP Inspector UI guide and list HTTP server endpoints.

This commit is contained in:
2026-04-21 09:17:57 +05:30
parent e67103049a
commit 8c657b0578
+14
View File
@@ -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