Infrastructure API
The central hub that aggregates all MCP servers, providing discovery, documentation, and proxy functionality for the entire ecosystem.
https://bookchaowalit-mcplist-frontend.vercel.app/api/mcpList all MCP servers
Get server details
Proxy tool call
1. Make a POST request to the API endpoint:
curl -X POST https://bookchaowalit-mcplist-frontend.vercel.app/api/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}'2. Call a specific tool:
curl -X POST https://bookchaowalit-mcplist-frontend.vercel.app/api/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "list_servers",
"arguments": {}
}
}'