- Support filtering of tools by name
- Support Claude-style mcp server json config format
- Added linting configs
An MCP proxy server that aggregates and serves multiple MCP resource servers through a single interface. This server acts as a central hub that can:
- Connect to and manage multiple MCP resource servers
- Expose their combined capabilities through a unified interface
- Handle routing of requests to appropriate backend servers
- Aggregate responses from multiple sources
- Discover and connect to multiple MCP resource servers
- Aggregate resources from all connected servers
- Maintain consistent URI schemes across servers
- Handle resource routing and resolution
- Expose tools from all connected servers
- Route tool calls to appropriate backend servers
- Maintain tool state and handle responses
- Aggregate prompts from all connected servers
- Route prompt requests to appropriate backends
- Handle multi-server prompt responses
The server requires a JSON configuration file that specifies the MCP servers to connect to. Copy the example config and modify it for your needs:
cp config.example.json config.json
The proxy server now supports the standard MCP configuration format used by Claude, Cursor, and other MCP clients. This makes it easier to copy and paste existing configurations:
{
"mcpServers": {
"server1": {
"command": "/path/to/server1/build/index.js"
},
"server2": {
"command": "server2-command",
"args": ["--option1", "value1"],
"env": ["SECRET_API_KEY"]
},
"server3": {
"url": "http://localhost:8080/sse"
}
}
}
For backward compatibility, the original configuration format is still supported:
{
"servers": [
{
"name": "Server 1",
"transport": {
"command": "/path/to/server1/build/index.js"
}
},
{
"name": "Server 2",
"transport": {
"command": "server2-command",
"args": ["--option1", "value1"],
"env": ["SECRET_API_KEY"]
}
},
{
"name": "Example Server 3",
"transport": {
"type": "sse",
"url": "http://localhost:8080/sse"
}
}
]
}
- MCP-Style Format: Server names are defined as object keys, and transport configuration is flattened
- SSE Servers: Use the
url
property directly (no need to specifytype: "sse"
) - Stdio Servers: Use
command
,args
, andenv
properties directly - Environment Variables: The
env
array lists environment variable names to pass to the server process - Tool Filtering: Use the optional
tools
array to specify which tools to expose from each server
You can control which tools are exposed from each server by adding a tools
array to the server configuration. This is useful when you want to:
- Limit the tools available to clients for security or simplicity
- Avoid tool name conflicts between servers
- Create focused configurations for specific use cases
Example with tool filtering:
{
"mcpServers": {
"puppeteer": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-puppeteer"],
"tools": ["puppeteer_navigate", "puppeteer_screenshot"]
},
"filesystem": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem"],
"tools": ["read_file", "write_file"]
}
}
}
If the tools
array is omitted or empty, all tools from the server will be exposed.
The config file must be provided when running the server:
MCP_CONFIG_PATH=./config.json mcp-proxy-server
Install dependencies:
npm install
Build the server:
npm run build
For development with auto-rebuild:
npm run watch
For development with continuous run:
# Stdio
npm run dev
# SSE
npm run dev:sse
To use with Claude Desktop, add the server config:
On MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
On Windows: %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"mcp-proxy": {
"command": "/path/to/mcp-proxy-server/build/index.js",
"env": {
"MCP_CONFIG_PATH": "/absolute/path/to/your/config.json",
"KEEP_SERVER_OPEN": "1"
}
}
}
}
KEEP_SERVER_OPEN
will keep the SSE running even if a client disconnects. Useful when multiple clients connects to the MCP proxy.
Since MCP servers communicate over stdio, debugging can be challenging. We recommend using the MCP Inspector, which is available as a package script:
npm run inspector
The Inspector will provide a URL to access debugging tools in your browser.