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"
}
}
}
}
}