Skip to content
VS Code

mcp for VS Code

io.github.waterfallbridge/mcp

Explain why any KPI or rate metric changed: bridge/variance analysis by driver, from CSV/Excel.

client:VS Code transport:stdio runtime:npm

Install mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "wb-default-url",
      "description": "WB_DEFAULT_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wb-headless",
      "description": "WB_HEADLESS",
      "password": true
    }
  ],
  "servers": {
    "mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@waterfallbridge/mcp"
      ],
      "env": {
        "WB_DEFAULT_URL": "${input:wb-default-url}",
        "WB_HEADLESS": "${input:wb-headless}"
      }
    }
  }
}

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

mcp in other clients