drio
Open app

Vercel MCP Server 🚀

Source

Catalog onlyCatalog onlySTDIO

Overview

Vercel MCP Server is a powerful Model Context Protocol (MCP) server that provides full administrative control over Vercel deployments through Cursor's Composer and Codeium's Cascade.

To use the Vercel MCP Server, clone the repository, install dependencies, and configure your Vercel access token. Then, run the server using the appropriate command for your operating system.

  • Team and project management tools - Deployment management capabilities - Domain and DNS management - Environment variable configuration - Access control and security features - Monitoring and logging tools
  1. Managing multiple Vercel projects efficiently.
  2. Automating deployment processes.
  3. Configuring environment variables for different projects.
  4. Monitoring project performance and logs.

Add to your AI client

Use these steps to connect Vercel MCP Server 🚀 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-mcp-server-quegenx": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-vercel-mcp-server-quegenx"
      ]
    }
  }
}

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-mcp-server-quegenx": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-vercel-mcp-server-quegenx"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "vercel-mcp-server-quegenx": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-vercel-mcp-server-quegenx"
      ]
    }
  }
}

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-mcp-server-quegenx": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-vercel-mcp-server-quegenx"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "vercel-mcp-server-quegenx": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-vercel-mcp-server-quegenx"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "vercel-mcp-server-quegenx": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-vercel-mcp-server-quegenx"
      ]
    }
  }
}

FAQ

What are the prerequisites for using Vercel MCP Server?

You need Node.js, npm, and a Vercel account with an access token.

Is Vercel MCP Server free to use?

Yes, it is free to use, but some features may require a paid Cursor IDE or Codeium's Cascade subscription.

How do I secure my Vercel access token?

Keep your access token secure and never commit it to version control.