← Back to DevHub
M

MCP List Hub

Infrastructure API

The central hub that aggregates all MCP servers, providing discovery, documentation, and proxy functionality for the entire ecosystem.

API Endpoint

https://bookchaowalit-mcplist-frontend.vercel.app/api/mcp

Endpoints

list_servers

servers/list

List all MCP servers

get_server

tools/call

Get server details

proxy_tool_call

tools/call

Proxy tool call

Quick Start

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": {}
    }
  }'