Skip to content
VS Code

vdiff mcp for VS Code

io.github.mcurmi05/vdiff-mcp

Breaking-change diffs for npm packages: removed exports, changed signatures, migration notes.

client:VS Code transport:stdio runtime:npm

Install vdiff mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "vdiff-api-url",
      "description": "VDIFF_API_URL",
      "password": true
    }
  ],
  "servers": {
    "vdiff-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "vdiff-mcp"
      ],
      "env": {
        "VDIFF_API_URL": "${input:vdiff-api-url}"
      }
    }
  }
}

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

vdiff mcp in other clients