V
Share:
About
Official Vercel MCP server: list projects, inspect deployments and build logs, roll back to prior deployments, and read/write environment variables per environment. Great for ops agents that triage failing builds or promote previews to production.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Vercel MCP.
- What is the purpose of the Vercel MCP server?
- The Vercel MCP server allows programmatic management of Vercel projects. It provides functionalities to list projects, inspect deployment details and build logs, roll back deployments, and manage environment variables across different environments.
- How can I authenticate with the Vercel MCP server?
- Authentication to the Vercel MCP server uses OAuth. You will need to configure your MCP client to perform the OAuth flow to obtain the necessary access tokens for interacting with the server.
- What operations can I perform with the Vercel MCP?
- With the Vercel MCP, you can manage deployments by inspecting logs and rolling back to previous versions. You can also read and write environment variables, which is useful for operational tasks such as triaging failing builds or promoting preview deployments to production.
- Is there a cost associated with using the Vercel MCP?
- The Vercel MCP itself does not have a direct cost, but its use is tied to your Vercel account and its associated billing plan. Any costs would depend on your Vercel usage and the features enabled within your Vercel subscription.
- What is a prerequisite for using the Vercel MCP?
- A prerequisite for using the Vercel MCP is an active Vercel account and projects deployed on the Vercel platform. The MCP is designed to manage resources within the Vercel ecosystem.
Install Vercel MCP
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"vercel": {
"url": "https://…",
"transport": "http",
"authType": "oauth"
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"vercel": {
"url": "https://…"
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"vercel": {
"type": "http",
"url": "https://…"
}
}
}Reviews
5.0(1)
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.