RouterMCP
Client Integrations

Client Integrations

Connect your favorite AI assistants and tools to RouterMCP.

Client Integrations

RouterMCP works with any MCP-compatible client. This section provides setup guides for popular AI assistants and development tools.

Supported Clients

Connection Methods

RouterMCP supports multiple transport protocols:

TransportUse CaseEndpoint
StdioLocal CLI, Claude Desktoproutermcp command
HTTP StreamableRemote servers, most clients/v1/mcp/{slug}/request
SSELegacy clients, streaming/v1/mcp/{slug}/sse

Quick Reference

RouterMCP CLI (Local)

For clients that spawn local processes:

{
  "mcpServers": {
    "routermcp": {
      "command": "routermcp",
      "args": []
    }
  }
}

RouterMCP Cloud (Remote)

For clients that support HTTP transport:

{
  "mcpServers": {
    "routermcp": {
      "type": "streamable-http",
      "url": "https://gateway.routermcp.com/v1/mcp/{project-slug}/request",
      "headers": {
        "Authorization": "Bearer {api-key}"
      }
    }
  }
}

Common Issues

IssueSolution
404 on first requestEnsure URL ends with /request and uses /v1/ prefix
401 UnauthorizedAdd Authorization: Bearer {key} header
Connection timeoutCheck the endpoint URL is accessible
Tools not appearingVerify servers are configured and tools are enabled

On this page