Overview
Vercel MCP Integration is a tool that provides programmatic access to Vercel's REST API, enabling users to manage deployments and monitor project statuses effectively.
To use the Vercel MCP Integration, clone the repository, install the necessary dependencies, configure your Vercel API token, and start the MCP server.
- Deployment monitoring and management - Environment variable retrieval - Project deployment status tracking - CI/CD pipeline integration
- Monitoring deployment statuses in real-time.
- Managing environment variables for different project stages.
- Integrating with CI/CD pipelines for automated deployments.
Add to your AI client
Use these steps to connect Vercel MCP Integration 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": {
"mcp-vercel-nganiet": {
"command": "node",
"args": [
"path_to_the_build_indexjs"
],
"env": {
"VERCEL_API_TOKEN": "YOUR TOKEN HERE"
}
}
}
}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": {
"mcp-vercel-nganiet": {
"command": "node",
"args": [
"path_to_the_build_indexjs"
],
"env": {
"VERCEL_API_TOKEN": "YOUR TOKEN HERE"
}
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-vercel-nganiet": {
"command": "node",
"args": [
"path_to_the_build_indexjs"
],
"env": {
"VERCEL_API_TOKEN": "YOUR TOKEN HERE"
}
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-vercel-nganiet": {
"type": "stdio",
"command": "node",
"args": [
"path_to_the_build_indexjs"
],
"env": {
"VERCEL_API_TOKEN": "YOUR TOKEN HERE"
}
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-vercel-nganiet": {
"command": "node",
"args": [
"path_to_the_build_indexjs"
],
"env": {
"VERCEL_API_TOKEN": "YOUR TOKEN HERE"
}
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-vercel-nganiet": {
"command": "node",
"args": [
"path_to_the_build_indexjs"
],
"env": {
"VERCEL_API_TOKEN": "YOUR TOKEN HERE"
}
}
}
}FAQ
What are the prerequisites for using Vercel MCP Integration?
You need Node.js 18+, a Vercel API Token, and an MCP Client.
How do I list all deployments?
Use the `vercel-list-all-deployments` tool with the appropriate arguments.
Is there support for creating new deployments?
Yes, deployment creation is planned for future updates.