Home/Servers/Vercel MCP Server

Vercel MCP Server

by Vercel ยท โญ 876 stars ยท updated 1 months ago

Manage Vercel deployments, projects, domains, and environment variables through your AI assistant. Trigger deployments, check status, and manage your Vercel infrastructure.

80
Very Good

Quality Score Breakdown

maintenance82/100
community78/100
documentation81/100
compatibility79/100

Use Cases

  • โœ“deploy projects
  • โœ“manage domains
  • โœ“set env vars
  • โœ“check deployment status

โšก One-Click Install Configs

Copy the config below and paste it into your AI client's config file.

๐Ÿค– Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "vercel": {
      "command": "npx",
      "args": [
        "-y",
        "@vercel/mcp-adapter"
      ],
      "env": {
        "VERCEL_TOKEN": "YOUR_VERCEL_TOKEN"
      }
    }
  }
}
โšก Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "vercel": {
      "command": "npx",
      "args": [
        "-y",
        "@vercel/mcp-adapter"
      ],
      "env": {
        "VERCEL_TOKEN": "YOUR_VERCEL_TOKEN"
      }
    }
  }
}
๐Ÿ’™ VS Code
.vscode/mcp.json
{
  "mcp": {
    "servers": {
      "vercel": {
        "command": "npx",
        "args": [
          "-y",
          "@vercel/mcp-adapter"
        ],
        "env": {
          "VERCEL_TOKEN": "YOUR_VERCEL_TOKEN"
        }
      }
    }
  }
}
โ† Back to all servers