npm @addiplus/vercel-deployment-mcpstdioMITupdated 1mo ago
A reference Model Context Protocol server for observing Vercel projects and deployments over stdio.
O que dá para fazer com vercel deployment mcp?
vercel-deployment-mcp
A reference Model Context Protocol server for observing Vercel projects and deployments over stdio.
This is a community reference implementation focused on deployment-workflow patterns. It is not a replacement for Vercel's own MCP offering. Its purpose is to demonstrate, in a small and readable codebase, how a deployment-focused MCP server can handle configuration cleanly and behave predictably on short-lived infrastructure.
Tools
| Tool | Description |
|---|---|
list_projects |
List projects visible to the configured account/team (search, limit) |
get_project |
Fetch one project by ID or name |
list_deployments |
List recent deployments (filter by project, state, limit) |
get_deployment |
Fetch one deployment by ID or URL, including current state |
list_projects and list_deployments each return a single page of up to
limit results (default 20, max 100). There is no cursor pagination; narrow
the request with search, projectId, or state to see more specific
results.
Install
From npm:
npm install @addiplus/vercel-deployment-mcp
Or run it directly without installing:
npx @addiplus/vercel-deployment-mcp
From source:
git clone https://github.com/addiplus/vercel-deployment-mcp.git
cd vercel-deployment-mcp
npm install
npm run build
npm test
Building and testing this repo requires Node 22+ (CI runs 22 and 24); the
published package runs on Node >=18 per engines.
Configuration
| Variable | Required | Purpose |
|---|---|---|
VERCEL_TOKEN |
yes | Vercel access token (create in account settings) |
VERCEL_TEAM_ID |
no | Scope requests to a team |
VERCEL_MCP_MIN_INTERVAL_MS |
no | Minimum milliseconds between the start of one Vercel API request and the next (default 250) |
VERCEL_MCP_MAX_CONCURRENT |
no | Maximum number of Vercel API requests in flight at once (default 4) |
On an HTTP 429 with a numeric Retry-After header of 10 seconds or less, the
server waits that long and retries the request once; any other 429 is
surfaced as an error on the first attempt.
Example client configuration (Claude Desktop / Claude Code):
{
"mcpServers": {
"vercel-deployment": {
"command": "npx",
"args": ["-y", "@addiplus/vercel-deployment-mcp"],
"env": { "VERCEL_TOKEN": "…" }
}
}
}
When running from a source checkout, use "command": "node" with
"args": ["/path/to/vercel-deployment-mcp/dist/index.js"] instead.
Design principles
Dated 2026-07-10. Each claim below is implemented in code and verified by the
test suite where testable (test/); design properties cite the implementing
code.
- Configuration values never appear in output. The access token is read
only from the environment. Error messages are shaped, size-bounded, and
passed through a redaction guard so upstream API messages cannot echo the
value back (
src/vercel.ts). - stdout belongs to the protocol. All diagnostics go to stderr
(
src/index.ts), so no log line can leak into a tool response. - Minimal footprint. v0.1 tools are read-only observations of projects and deployments; the server requests nothing beyond what those reads need.
- Stateless by design. Configuration is re-read from the environment on
every tool call (verified in
test/tools.test.ts), so behavior is identical on long-lived hosts and short-lived workers. The one piece of module-level state is a request throttle (src/vercel.ts) that spaces out and caps concurrent Vercel API calls; its interval and concurrency settings are read once at first use, and it holds no credentials or response data.
Roadmap
- Deployment actions with an explicit out-of-band approval step (exploring the patterns discussed in MCP spec issues #2919/#2920 around multi-round tool results on stateless transports).
- Standardizing how
server.jsondescribes stdio package install manifests and how clients convert them into local configuration files (spec issue #2963, registry issue #749).
License
MIT
Instalação
Adicione vercel deployment mcp ao seu cliente. Escolha o que você usa.
claude mcp add vercel-deployment-mcp -- npx -y @addiplus/vercel-deployment-mcpcodex mcp add vercel-deployment-mcp -- npx -y @addiplus/vercel-deployment-mcpamp mcp add vercel-deployment-mcp -- npx -y @addiplus/vercel-deployment-mcp{
"mcpServers": {
"vercel-deployment-mcp": {
"command": "npx",
"args": [
"-y",
"@addiplus/vercel-deployment-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"vercel-deployment-mcp": {
"command": "npx",
"args": [
"-y",
"@addiplus/vercel-deployment-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"vercel-deployment-mcp","command":"npx","args":["-y","@addiplus/vercel-deployment-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"vercel-deployment-mcp": {
"command": "npx",
"args": [
"-y",
"@addiplus/vercel-deployment-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"vercel-deployment-mcp": {
"command": "npx",
"args": [
"-y",
"@addiplus/vercel-deployment-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"vercel-deployment-mcp": {
"command": "npx",
"args": [
"-y",
"@addiplus/vercel-deployment-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"vercel-deployment-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@addiplus/vercel-deployment-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"vercel-deployment-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@addiplus/vercel-deployment-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @addiplus/vercel-deployment-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
4 ferramentas
vercel deployment mcp expõe 4 ferramentas a um agente conectado.
- list_projects
- List projects visible to the configured account/team (search, limit)
- get_project
- Fetch one project by ID or name
- list_deployments
- List recent deployments (filter by project, state, limit)
- get_deployment
- Fetch one deployment by ID or URL, including current state
Pontuação
75 / 100
Boa
- Documentação25/25
- Manutenção19/25
- Confiança13/20
- Capacidade6/15
- Instalação12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 29 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 4 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Histórico de versões
| Versões | Publicada |
|---|---|
| 0.2.0Mais recente | 11 de jul. de 2026 |
| 0.1.0 | 9 de jul. de 2026 |