com.pulsemcp/vercel icon

vercel

by Pulsemcp.com

com.pulsemcp/vercel

MCP server for Vercel — manage deployments and view build and runtime application logs.

Vercel MCP Server

An MCP server for managing Vercel deployments and viewing application runtime logs through the Vercel REST API.

Highlights

  • Deployment Management - List, inspect, create, cancel, delete, promote, and rollback deployments
  • Build & Runtime Logs - View build logs (events) and runtime application logs for debugging
  • Fine-grained Access Control - Enable readonly or readwrite tool groups via environment variables
  • Team Support - Scope operations to a specific Vercel team

Capabilities

Tools

Tool Group Description
list_deployments readonly List deployments with filtering by project, target, and state
get_deployment readonly Get detailed deployment information by ID or URL
list_projects readonly List projects in the account/team
get_deployment_events readonly Get build logs for a deployment
get_runtime_logs readonly Get runtime application logs with filtering
create_deployment readwrite Create a new deployment or redeploy
cancel_deployment readwrite Cancel an in-progress deployment
delete_deployment readwrite Delete a deployment permanently
promote_deployment readwrite Promote a deployment to production
rollback_deployment readwrite Rollback to a previous deployment

Setup

Prerequisites

Configuration

Variable Required Description
VERCEL_TOKEN Yes Vercel API token
VERCEL_TEAM_ID No Team ID for team-scoped operations
VERCEL_TEAM_SLUG No Team URL slug (alternative to team ID)
VERCEL_ENABLED_TOOLGROUPS No Comma-separated tool groups: readonly, readwrite (default: all)

Manual Setup

# Clone the repository
git clone https://github.com/pulsemcp/mcp-servers.git
cd mcp-servers/experimental/vercel

# Install dependencies
npm install

# Build
npm run build

# Set environment variables
export VERCEL_TOKEN="your-token-here"

# Run
npm start

Usage Tips

  • Use list_projects first to find project IDs needed by promote_deployment, rollback_deployment, and get_runtime_logs
  • Runtime log retention varies by plan: Hobby=1h, Pro=1d, Enterprise=3d (up to 30d with Observability Plus)
  • Use get_runtime_logs with since/until to query historical logs, search to find specific errors, and level/source to filter results
  • Set VERCEL_ENABLED_TOOLGROUPS=readonly to prevent any write operations
  • Use list_deployments with the state filter to quickly find failed or in-progress deployments

Examples

Check deployment status

"What's the status of my latest deployments?"

Uses list_deployments to show recent deployments with their states.

Debug a failed build

"Show me the build logs for deployment dpl_abc123"

Uses get_deployment_events to display the build output and error messages.

Promote a preview to production

"Promote deployment dpl_abc123 to production for project prj_xyz789"

Uses promote_deployment to make a preview deployment serve production traffic.

View runtime errors

"Show me the runtime logs for my-app's latest deployment"

Uses list_projects to find the project ID, then get_runtime_logs to show recent application logs.

Search for specific errors in logs

"Find all 500 errors in the last 24 hours for my-app"

Uses get_runtime_logs with statusCode: 500 and since set to 24 hours ago to filter server errors.

Debug edge function issues

"Show me warning and error logs from edge functions for dpl_abc123"

Uses get_runtime_logs with source: "edge-function" and level: "error" to narrow down issues.

Development

# Install dependencies
npm install

# Build
npm run build

# Run functional tests
npm test

# Run integration tests
npm run test:integration

# Run manual tests (requires .env with VERCEL_TOKEN)
npm run test:manual

# Lint
npm run lint