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:

| Client | How to connect |
|---|---|
| Claude Web & Mobile | Add a Custom Connector with your MCPBox URL |
| Claude Code | claude 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"
}
}
}
}| Client | How to connect |
|---|---|
| Claude Code | claude mcp add --transport http mcpbox https://your-mcpbox-url.com --header "Authorization: Bearer YOUR_API_KEY" |