Quick Start - Get Running in 5 Minutes
Get up and running with RouterMCP in under 5 minutes.
Quick Start
Get RouterMCP running in under 5 minutes. Choose your preferred approach:
Create Configuration
Generate a starter configuration file:
routermcp configThis creates routermcp.jsonc in your current directory. Edit it to add your MCP servers:
{
"mcpServers": {
"filesystem": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/directory"]
},
"github": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_TOKEN}"
}
}
}
}Start the Gateway
routermcpBy default, RouterMCP starts in stdio mode. For HTTP mode:
routermcp --httpThis starts an HTTP server on http://127.0.0.1:5151.
Connect Your AI Client
Configure your MCP client to connect to RouterMCP. For Claude Desktop, add to your config:
{
"mcpServers": {
"routermcp": {
"command": "routermcp",
"args": []
}
}
}For HTTP mode, use the SSE endpoint: http://127.0.0.1:5151/sse
Sign Up
Create an account at routermcp.com.
Create a Project
Projects are containers for your MCP servers. Create one from the dashboard and give it a memorable slug (e.g., my-project).
Add MCP Servers
Add your upstream MCP servers. RouterMCP Cloud supports:
- HTTP/SSE servers - Connect to remote MCP servers
- Managed servers - Use pre-configured servers from our registry
Generate an API Key
Create an API key for your project. You'll use this to authenticate your MCP client.
Connect Your Client
Use the provided endpoint URL in your MCP client configuration:
https://gateway.routermcp.com/v1/mcp/your-project-slug/sseInclude your API key in the Authorization header:
Authorization: Bearer your-api-keyWhat's Next?
Now that you have RouterMCP running, explore these guides:
- Core Concepts - Understand how RouterMCP works
- Configuration Reference - Full CLI configuration options
- Client Integrations - Connect Claude, VS Code, Cursor, and more