vercel-mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| LOG_LEVEL | No | 日志级别(可选,默认为info) | |
| API_TIMEOUT | No | API请求超时时间,单位毫秒(可选,默认为30000) | |
| VERCEL_TOKEN | Yes | Vercel API访问令牌 | |
| VERCEL_TEAM_ID | No | Vercel团队ID(可选) |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| vercel_list_projectsB | List all Vercel projects |
| vercel_get_projectB | Get details of a specific Vercel project |
| vercel_list_deploymentsC | List deployments for a project or all projects |
| vercel_get_deploymentA | Get details of a specific deployment |
| vercel_get_deployment_logsB | Get logs for a specific deployment |
| vercel_cancel_deploymentA | Cancel a deployment that is currently building |
| vercel_list_env_varsB | List environment variables for a project |
| vercel_create_env_varB | Create a new environment variable for a project |
| vercel_update_env_varC | Update an existing environment variable |
| vercel_delete_env_varB | Delete an environment variable |
| vercel_list_domainsC | List all domains |
| vercel_add_domainC | Add a new domain |
| vercel_delete_domainC | Delete a domain |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 13 tools
Each tool targets a distinct resource and action: projects, deployments (with logs and cancel), environment variables (full CRUD), and domains (list, add, delete). No overlapping purposes.
All tools follow the consistent pattern 'vercel_verb_noun' (e.g., vercel_list_projects, vercel_get_deployment). Verbs are uniform (list, get, create, update, delete, cancel, add) and snake_case is used throughout.
13 tools is a reasonable size for a Vercel management server, covering the main areas of projects, deployments, environment variables, and domains without being excessive or sparse.
The tool set covers core CRUD for environment variables and domains, plus deployments and project details. However, missing create/delete for projects and create deployment are notable gaps, though some may be by design (deployments triggered via git).