vercel-mcp
Lightweight MCP server to give your Cursor Agent access to the Vercel API.
Overview
Vercel MCP is a lightweight server that connects your Cursor Agent to the Vercel API, enabling seamless interaction with Vercel's deployment and DNS management features.
To use Vercel MCP, you can install it in your project by adding the MCP server to your .cursor/mcp.json or globally by using the command npx vercel-mcp VERCEL_API_KEY=<your-vercel-api-key>.
- Access to Vercel deployment events and management. - DNS record management for domains. - Project management capabilities including adding and verifying domains. - Environment variable management for Vercel projects.
- Automating deployment processes in Vercel.
- Managing DNS records for multiple domains.
- Retrieving and updating project configurations in Vercel.
- Handling environment variables for secure project management.
Add to your AI client
Use these steps to connect vercel-mcp in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"vercel-api-mcp-zueai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-vercel-api-mcp-zueai"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"vercel-api-mcp-zueai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-vercel-api-mcp-zueai"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"vercel-api-mcp-zueai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-vercel-api-mcp-zueai"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"vercel-api-mcp-zueai": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-vercel-api-mcp-zueai"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"vercel-api-mcp-zueai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-vercel-api-mcp-zueai"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"vercel-api-mcp-zueai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-vercel-api-mcp-zueai"
]
}
}
}FAQ
What is required to use Vercel MCP?
You need a Vercel API key to authenticate and use the features of Vercel MCP.
Is Vercel MCP free to use?
Yes! Vercel MCP is open-source and free to use under the MIT license.
What programming language is Vercel MCP written in?
Vercel MCP is developed in TypeScript.