Vercel MCP Pro for VS Code
io.github.helbertparanhos/vercel-mcp-pro
Complete Vercel MCP: deploys, logs, projects, env, domains, DNS, certs via the full REST API
client:VS Code
transport:stdio
runtime:npm
Install Vercel MCP Pro 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-readonly",
"description": "VERCEL_READONLY",
"password": true
}
],
"servers": {
"vercel-mcp-pro": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"vercel-mcp-pro"
],
"env": {
"VERCEL_TOKEN": "${input:vercel-token}",
"VERCEL_TEAM_ID": "${input:vercel-team-id}",
"VERCEL_READONLY": "${input:vercel-readonly}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs