Set it up
- 1
Turn on Vercel in your AI
In Claude: open Settings → Connectors and add Vercel. In ChatGPT: Settings → Apps & Connectors.
- 2
Add it to your app once
Copy the short config below into your app. It just tells your AI where to find Vercel.
- 3
Just ask
Tell it what you want in plain words — no special commands.
For example, say
“Show me my 5 most recent Vercel deployments and their status”
Need the exact config? Show it +
Add to your client
{
"mcpServers": {
"vercel": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.vercel.com/<team-slug>/<project-slug>"]
}
}
}Paste into your client's MCP configuration file.
Get the skill
A ready-made skill that teaches your AI agent to use Vercel well. Vercel's official agent skills (deploy from the agent, claimable handoff).
npx skills add vercel-labs/agent-skills Quick skills
Copy one, paste it to your AI, watch it work.
Build Failure Debugging
“Get the logs for my latest failed deployment on my-app and tell me what caused the error”
Environment Variable Management
“Set DATABASE_URL to the production value for the my-app project, production environment only”
Deployment Status Checks
“Show me all deployments across my projects from the last 24 hours and flag any that failed”
Good to know
- · Requires a Vercel access token — scope it to the team that owns your projects
- · Writing environment variables triggers new deployments on most frameworks
- · Deleting a project is irreversible — always confirm before destructive operations
When to use
- ✓ You're debugging a failed Vercel deployment and want AI to read the logs
- ✓ You need to add or update environment variables from conversation
- ✓ You want to check deployment status across multiple projects quickly
- ✓ You're managing preview URLs and domain configuration
When not to use
- × You deploy on Netlify, Cloudflare Pages, or Railway (use those specific servers)
- × You need to edit your source code — use git/github-mcp for that
- × You want to manage billing or team settings (limited support)
About
Imagine asking your AI: 'Why did the last deployment fail?' or 'Set the STRIPE_KEY env var for production' — and it manages Vercel for you. This server connects your AI to Vercel so it can list deployments, inspect build logs, manage environment variables, and configure domains.
The official Vercel MCP server gives AI assistants access to your Vercel projects. List deployments, inspect build logs, manage environment variables, trigger redeploys, and manage domains — all through natural language.
Maintained by Vercel with full API coverage. Ideal for frontend teams deploying on Vercel who want AI-assisted deployment management.
Workflows That Use Vercel MCP
Take a Linear ticket from 'todo' to a live preview URL in one conversation — read the spec, write the code, open the PR, deploy.
Stripe, Cloudflare, Vercel, databases and more — manage real accounts through chat, with the API key staying yours.
Deploy, check status, manage domains, and roll back — all by chatting with Claude.
Works With
Also Consider
FAQ
What does Vercel MCP do? +
Imagine asking your AI: 'Why did the last deployment fail?' or 'Set the STRIPE_KEY env var for production' — and it manages Vercel for you. This server connects your AI to Vercel so it can list deployments, inspect build logs, manage environment variables, and configure domains.
Do I need to know how to code? +
No. Turn it on in your AI's settings and ask in plain English — no terminal, no coding.
When should I use Vercel MCP? +
Reach for it when you need to: You're debugging a failed Vercel deployment and want AI to read the logs; You need to add or update environment variables from conversation; You want to check deployment status across multiple projects quickly; You're managing preview URLs and domain configuration.
When should I avoid Vercel MCP? +
Skip it when: You deploy on Netlify, Cloudflare Pages, or Railway (use those specific servers); You need to edit your source code — use git/github-mcp for that; You want to manage billing or team settings (limited support).
How do I install Vercel MCP? +
In Claude Code, run: claude mcp add --transport http vercel https://mcp.vercel.com/<team-slug>/<project-slug>. Copy-paste configs for Claude Desktop, Cursor, and Windsurf are at the top of this page.