Connect Remote MCP Servers to MCPX
Remote MCP servers are hosted outside of your environment, and MCPX can connect to them over HTTP or SSE.
You just need to provide the server name and URL when adding these servers in the MCPX Control Plane
1
Add remote server
Add each remote MCP server to your configuration with its name and URL.
{
"notion": {
"type": "streamable-http",
"url": "https://mcp.notion.com/mcp"
}
}
{
"linear": {
"type": "sse",
"url": "https://mcp.linear.app/sse"
}
}
{
"atlassian": {
"url": "https://mcp.atlassian.com/v1/sse"
}
}
Tip
- Currently only two options for
"type"
are supported,sse
orstreamable-http
"type"
is optional and can be inferred according to the url:- the suffix
/sse
will infer to typesse
- the suffix
/mcp
will infer to typestreamable-http
.
- the suffix
2
Authenticate
Once connected, authenticate each remote server.
- Click authenticate and follow instructions for each server.
- If a server is unreachable or returns an error, MCPX will log a warning.
Use the Control Plane to inspect connected servers and debug issues.