MCP Server
io.github.rupinder2/mcp-orchestrator MCP Server
io.github.rupinder2/mcp-orchestrator
What is the io.github.rupinder2/mcp-orchestrator MCP server?
Aggregates tools from multiple MCP servers with unified BM25/regex search and deferred loading.
How to install io.github.rupinder2/mcp-orchestrator
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
STORAGE_BACKENDStorage backend for tool cache. Use 'memory' for development or 'redis' for production.
REDIS_URLRedis connection URL. Required only when STORAGE_BACKEND=redis.
SERVER_CONFIG_PATHPath to the server_config.json file listing downstream MCP servers.
ORCHESTRATOR_PORTPort for the HTTP transport server (default: 8080).
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"mcp-orchestrator": {
"command": "uvx",
"args": [
"mcp-orchestrator"
],
"env": {
"STORAGE_BACKEND": "<YOUR_STORAGE_BACKEND>",
"REDIS_URL": "<YOUR_REDIS_URL>",
"SERVER_CONFIG_PATH": "<YOUR_SERVER_CONFIG_PATH>",
"ORCHESTRATOR_PORT": "<YOUR_ORCHESTRATOR_PORT>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"mcp-orchestrator": {
"command": "uvx",
"args": [
"mcp-orchestrator"
],
"env": {
"STORAGE_BACKEND": "<YOUR_STORAGE_BACKEND>",
"REDIS_URL": "<YOUR_REDIS_URL>",
"SERVER_CONFIG_PATH": "<YOUR_SERVER_CONFIG_PATH>",
"ORCHESTRATOR_PORT": "<YOUR_ORCHESTRATOR_PORT>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-orchestrator": {
"command": "uvx",
"args": [
"mcp-orchestrator"
],
"env": {
"STORAGE_BACKEND": "<YOUR_STORAGE_BACKEND>",
"REDIS_URL": "<YOUR_REDIS_URL>",
"SERVER_CONFIG_PATH": "<YOUR_SERVER_CONFIG_PATH>",
"ORCHESTRATOR_PORT": "<YOUR_ORCHESTRATOR_PORT>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"mcp-orchestrator": {
"type": "stdio",
"command": "uvx",
"args": [
"mcp-orchestrator"
],
"env": {
"STORAGE_BACKEND": "<YOUR_STORAGE_BACKEND>",
"REDIS_URL": "<YOUR_REDIS_URL>",
"SERVER_CONFIG_PATH": "<YOUR_SERVER_CONFIG_PATH>",
"ORCHESTRATOR_PORT": "<YOUR_ORCHESTRATOR_PORT>"
}
}
}
}Claude Code
claude mcp add mcp-orchestrator --env STORAGE_BACKEND=<YOUR_STORAGE_BACKEND> --env REDIS_URL=<YOUR_REDIS_URL> --env SERVER_CONFIG_PATH=<YOUR_SERVER_CONFIG_PATH> --env ORCHESTRATOR_PORT=<YOUR_ORCHESTRATOR_PORT> -- uvx mcp-orchestratorRelated MCP servers
Aggregates tools from multiple MCP servers with unified BM25/regex search and deferred loading.
View repository →