Skip to main content
NekoHub exposes an HTTP MCP endpoint for compatible clients.

Endpoint

POST /mcp
Full URL example:
http://your-host:5121/mcp
The controller currently also implements:
  • GET /mcp
  • GET /mcp/sse
  • POST /mcp/message?sessionId=...

Authentication

MCP only accepts API keys, and they must be sent as Bearer credentials:
Authorization: Bearer your-api-key

Client config

{
  "mcpServers": {
    "nekohub": {
      "url": "http://localhost:5121/mcp",
      "headers": {
        "Authorization": "Bearer your-api-key"
      }
    }
  }
}