Skip to content

Connect AI

Any MCP client that supports Streamable HTTP can connect to MCPBox. How you connect depends on your authentication setup.

With dynamic registration (OAuth)

Most MCP clients support dynamic registration:

json
{
  "mcpServers": {
    "mcpbox": {
      "url": "https://your-mcpbox-url.com"
    }
  }
}

When prompted, sign in with your configured identity provider:

MCPBox login screen
ClientHow to connect
Claude Web & MobileAdd a Custom Connector with your MCPBox URL
Claude Codeclaude mcp add --transport http mcpbox https://your-mcpbox-url.com

With API key

Pass the key in the Authorization header:

json
{
  "mcpServers": {
    "mcpbox": {
      "url": "https://your-mcpbox-url.com",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}
ClientHow to connect
Claude Codeclaude mcp add --transport http mcpbox https://your-mcpbox-url.com --header "Authorization: Bearer YOUR_API_KEY"