PluginBench
MCP Server

io.github.rupinder2/mcp-gateway MCP Server

io.github.rupinder2/mcp-gateway

What is the io.github.rupinder2/mcp-gateway MCP server?

Aggregates tools from multiple MCP servers with unified BM25/regex search and deferred loading.

How to install io.github.rupinder2/mcp-gateway

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • STORAGE_BACKEND

    Storage backend for tool cache. Use 'memory' for development or 'redis' for production.

  • REDIS_URL

    Redis connection URL. Required only when STORAGE_BACKEND=redis.

  • SERVER_CONFIG_PATH

    Path to the server_config.json file listing downstream MCP servers.

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "mcp-gateway": {
      "command": "uvx",
      "args": [
        "mcp-orchestration-gateway"
      ],
      "env": {
        "STORAGE_BACKEND": "<YOUR_STORAGE_BACKEND>",
        "REDIS_URL": "<YOUR_REDIS_URL>",
        "SERVER_CONFIG_PATH": "<YOUR_SERVER_CONFIG_PATH>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "mcp-gateway": {
      "command": "uvx",
      "args": [
        "mcp-orchestration-gateway"
      ],
      "env": {
        "STORAGE_BACKEND": "<YOUR_STORAGE_BACKEND>",
        "REDIS_URL": "<YOUR_REDIS_URL>",
        "SERVER_CONFIG_PATH": "<YOUR_SERVER_CONFIG_PATH>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "mcp-gateway": {
      "command": "uvx",
      "args": [
        "mcp-orchestration-gateway"
      ],
      "env": {
        "STORAGE_BACKEND": "<YOUR_STORAGE_BACKEND>",
        "REDIS_URL": "<YOUR_REDIS_URL>",
        "SERVER_CONFIG_PATH": "<YOUR_SERVER_CONFIG_PATH>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "mcp-gateway": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "mcp-orchestration-gateway"
      ],
      "env": {
        "STORAGE_BACKEND": "<YOUR_STORAGE_BACKEND>",
        "REDIS_URL": "<YOUR_REDIS_URL>",
        "SERVER_CONFIG_PATH": "<YOUR_SERVER_CONFIG_PATH>"
      }
    }
  }
}
Claude Code
claude mcp add mcp-gateway --env STORAGE_BACKEND=<YOUR_STORAGE_BACKEND> --env REDIS_URL=<YOUR_REDIS_URL> --env SERVER_CONFIG_PATH=<YOUR_SERVER_CONFIG_PATH> -- uvx mcp-orchestration-gateway

Related MCP servers

Aggregates tools from multiple MCP servers with unified BM25/regex search and deferred loading.

View repository →