Skip to content
VS Code

mcp funnel for VS Code

io.github.chris-schra/mcp-funnel

MCP proxy that aggregates multiple servers with tool filtering and customization

client:VS Code transport:stdio runtime:npm

Install mcp funnel in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mcp-funnel-config",
      "description": "MCP_FUNNEL_CONFIG",
      "password": true
    }
  ],
  "servers": {
    "mcp-funnel": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-funnel"
      ],
      "env": {
        "MCP_FUNNEL_CONFIG": "${input:mcp-funnel-config}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

mcp funnel in other clients