Skip to content
VS Code

vercel for VS Code

com.pulsemcp/vercel

MCP server for Vercel — manage deployments and view build and runtime application logs.

client:VS Code transport:stdio runtime:npm

Install vercel 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
    },
    {
      "type": "promptString",
      "id": "vercel-team-slug",
      "description": "VERCEL_TEAM_SLUG",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vercel-enabled-toolgroups",
      "description": "VERCEL_ENABLED_TOOLGROUPS",
      "password": true
    }
  ],
  "servers": {
    "vercel": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "vercel-platform-mcp-server"
      ],
      "env": {
        "VERCEL_TOKEN": "${input:vercel-token}",
        "VERCEL_TEAM_ID": "${input:vercel-team-id}",
        "VERCEL_TEAM_SLUG": "${input:vercel-team-slug}",
        "VERCEL_ENABLED_TOOLGROUPS": "${input:vercel-enabled-toolgroups}"
      }
    }
  }
}

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

vercel in other clients