Skip to content
VS Code

vercel deployment mcp for VS Code

io.github.addiplus/vercel-deployment-mcp

Reference MCP stdio server for observing Vercel projects and deployments.

client:VS Code transport:stdio runtime:npm

Install vercel deployment mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "vercel-token",
      "description": "VERCEL_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vercel-team-id",
      "description": "VERCEL_TEAM_ID",
      "password": true
    }
  ],
  "servers": {
    "vercel-deployment-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@addiplus/vercel-deployment-mcp"
      ],
      "env": {
        "VERCEL_TOKEN": "${input:vercel-token}",
        "VERCEL_TEAM_ID": "${input:vercel-team-id}"
      }
    }
  }
}

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

vercel deployment mcp in other clients