Skip to content

mcp-remote bridge

Some MCP clients can only launch local servers (a command on your machine), not connect to a remote URL. mcp-remote is a small open-source bridge that lets those clients reach AllMCP over HTTP. You only need this for clients that don’t support remote HTTP servers directly.

Get your API key All clients

Node.js must be installed — mcp-remote runs through npx.


Wherever your client lets you define a local (command-based) MCP server, use:

mcp config
{
"mcpServers": {
"allmcp": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://go.allmcp.co/mcp/", "--header", "X-API-Key:${ALLMCP_API_KEY}"],
"env": { "ALLMCP_API_KEY": "YOUR_API_KEY" }
}
}
}

Add user_id to the URL argument to keep each person’s connected providers separate:

"args": ["-y", "mcp-remote", "https://go.allmcp.co/mcp/?user_id=your-user-id", "--header", "X-API-Key:${ALLMCP_API_KEY}"]