Skip to main content
Version: 1.1.x

Connect Public MCP Servers to MCPX

Easily connect your existing public MCP servers to MCPX - we’ll take care of running and managing them for you. You can connect your MCP Servers using the MCPX Control Plane or by manually creating and configuring your mcp.json.

1

Configure mcp.json

Create or update your mcp.json configuration file:

cd config
nano mcp.json

For example:

{
"mcpServers": {
"memory": {
"args": [
"-y",
"@modelcontextprotocol/server-memory"
],
"command": "npx",
"env": {
"MEMORY_FILE_PATH": "/path/to/custom/memory.json"
},
"icon": "📝"
},
"time": {
"args": [
"mcp-server-time",
"--local-timezone=America/New_York"
],
"command": "uvx",
"env": {},
"icon": "⏰"
}
}
}

See the mcp.json configuration guide for detailed information.

2

Environment Variables

Define the required environment variables for your MCP servers within your Docker container.

# Google Maps
export GOOGLE_MAPS_API_KEY="your-google-maps-api-key"

# Slack
export SLACK_BOT_TOKEN="your-slack-bot-token"
export SLACK_CHANNEL_IDS="channel1,channel2"
export SLACK_TEAM_ID="your-team-id"