PluginBench
MCP Server
Active

MCP Gateway MCP Server

io.github.MikkoParkkola/mcp-gateway

What is the MCP Gateway MCP server?

Universal MCP gateway with Meta-MCP discovery, routing, and REST API capabilities.

How to install MCP Gateway

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "mcp-gateway": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/mikkoparkkola/mcp-gateway:3.4.0",
        "serve",
        "--stdio"
      ]
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "mcp-gateway": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/mikkoparkkola/mcp-gateway:3.4.0",
        "serve",
        "--stdio"
      ]
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "mcp-gateway": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/mikkoparkkola/mcp-gateway:3.4.0",
        "serve",
        "--stdio"
      ]
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "mcp-gateway": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/mikkoparkkola/mcp-gateway:3.4.0",
        "serve",
        "--stdio"
      ]
    }
  }
}
Claude Code
claude mcp add mcp-gateway -- docker run -i --rm ghcr.io/mikkoparkkola/mcp-gateway:3.4.0 serve --stdio

Related MCP servers

trvl

Active

Door-to-door travel MCP + CLI: flights, hotels, trains, cars, ferries. No API keys, Go binary.

43
Go
View repository →