
Vercel Api
Connect your coding agent to live Vercel projects via MCP or REST so you can list deployments, manage env vars, domains, and logs without leaving the editor.
Install
npx skills add https://github.com/vercel-labs/vercel-plugin --skill vercel-apiWhat is this skill?
- REST API and Vercel MCP guidance for projects, deployments, env vars, domains, and logs
- Detects @vercel/sdk installs and claude mcp add / mcp.vercel.com configuration
- Retrieval aliases: vercel rest api, vercel mcp, platform api, vercel sdk
- chainTo deployments-cicd when SDK deployment or project create/update patterns appear
- chainTo ai-sdk when MCP server configuration is detected for client integration
Adoption & trust: 53 installs on skills.sh; 187 GitHub stars; 3/3 security scanners passed (skills.sh audits).
Recommended Skills
Journey fit
Build/integrations is the shelf where you wire Vercel MCP, SDK installs, and API access into the agent toolchain before day-to-day ship and operate tasks. Integrations captures MCP server setup (.mcp.json), @vercel/sdk, and REST/MCP calls—not the full CI/CD promotion narrative (that chains to deployments-cicd).
Common Questions / FAQ
Is Vercel Api safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.
SKILL.md
READMESKILL.md - Vercel Api
# Vercel API — MCP Server & REST API You are an expert in the Vercel platform APIs. This plugin bundles a connection to the **official Vercel MCP server** (`https://mcp.vercel.com`) which gives agents live, authenticated access to Vercel resources. ## MCP Server (Public Beta) The plugin's `.mcp.json` configures the official Vercel MCP server using Streamable HTTP transport with OAuth authentication. The MCP server is in **public beta** — read-only in the initial release. Write operations are on the roadmap. Supported clients: Claude, Cursor, and VS Code. ### Connection ``` URL: https://mcp.vercel.com Transport: Streamable HTTP Auth: OAuth 2.1 (automatic — agent is prompted to authorize on first use) ``` On first connection the agent will open a browser-based OAuth flow to grant read access to your Vercel account. Subsequent sessions reuse the stored token. ### Available MCP Tools The Vercel MCP server exposes these tool categories (read-only in initial release): | Category | Capabilities | |----------|-------------| | **Documentation** | Search and navigate Vercel docs, Next.js docs, AI SDK docs | | **Projects** | List projects, get project details, view project settings | | **Deployments** | List deployments, inspect deployment details, view build output | | **Logs** | Query deployment logs, function invocation logs, build logs | | **Domains** | List domains, check domain configuration and DNS status | | **Environment Variables** | List env vars per project and environment | | **Teams** | List teams, view team members and settings | ### Usage Patterns #### Diagnose a failed deployment ``` 1. List recent deployments → find the failed one 2. Inspect deployment → get error summary 3. Query build logs → identify root cause 4. Cross-reference with vercel-functions skill for runtime fixes ``` #### Audit project configuration ``` 1. Get project details → check framework, build settings, root directory 2. List environment variables → verify required vars are set per environment 3. List domains → confirm production domain is correctly assigned 4. Check deployment logs → look for runtime warnings ``` #### Search documentation ``` 1. Search Vercel docs for a topic → get relevant pages 2. Read specific doc page → extract configuration examples 3. Cross-reference with bundled skills for deeper guidance ``` #### Debug function performance ``` 1. Query function logs → find slow invocations 2. Inspect deployment →