Unified Interface
Single endpoint that aggregates multiple MCP servers, simplifying AI assistant integration
A unified Model Context Protocol server implementation that acts as a proxy/multiplexer for multiple MCP servers
The Problem: AI assistants need to connect to multiple MCP servers, but managing dozens of individual connections is complex, unreliable, and security-intensive.
The Solution: 1MCP acts as a unified proxy/multiplexer that aggregates multiple MCP servers behind a single, reliable interface.
Start with a simple configuration:
{
"mcpServers": {
"filesystem": {
"command": ["npx", "-y", "@modelcontextprotocol/server-filesystem", "/tmp"],
"description": "File system access"
},
"search": {
"command": ["npx", "-y", "@modelcontextprotocol/server-web-search"],
"description": "Web search capabilities"
}
}
}
# Start the proxy
npx -y @1mcp/agent --config mcp.json --port 3000
Now your agent is running. Connect your MCP client to http://localhost:3000
to start using your aggregated tools.