At a glance
- Availability: Experimental (how to enable).
- Auth: API key.
- Connection: The key comes from
VERCEL_TOKEN. - Docs: https://vercel.com/docs/rest-api
Credentials
Set these per environment. See Connect an integration.Setup
- Sign in to Vercel: Go to https://vercel.com and sign in (the free Hobby plan is sufficient for testing).
- Create an access token: Open Account Settings > Tokens (https://vercel.com/account/settings/tokens), create a token, choose its scope (personal account or a team), and copy it.
- Set the environment variable: Add the token to your .env as VERCEL_TOKEN=…
- Verify access: Run List Projects. For team resources, pass the team’s ID via the teamId parameter (find it in Team Settings).
- Tokens are sent as ‘Authorization: Bearer <token>’
- To access resources owned by a team, every call must include teamId (or slug) as a query parameter
- Endpoint versions differ per route (v10 projects, v7 deployments list, v13 deployment detail) - this is normal for the Vercel API
Tools
Example prompts
- List my most recent Vercel deployments with their state and target environment.
- Find my Vercel deployments in ERROR state from the last day and tell me which projects are affected.