vercel_raw
Directly call any Vercel REST API endpoint by specifying HTTP method, full path, and optional query params or body. Auth, retries, and rate-limiting are handled automatically.
Instructions
Call any Vercel REST endpoint directly (escape hatch for full API coverage). Provide the HTTP method and the FULL path INCLUDING the version segment (e.g. '/v9/projects' or '/v13/deployments/dpl_xxx'), plus optional query params and JSON body. The configured team scope (VERCEL_TEAM_ID) is auto-injected unless you pass teamId/slug in params. Use this only when no dedicated tool exists. Auth, retries and rate-limiting are handled for you. Reference: https://vercel.com/docs/rest-api
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| method | Yes | HTTP method. | |
| path | Yes | Full path including version, starting with '/'. Example: '/v9/projects/my-app'. | |
| params | No | Query string parameters. | |
| body | No | Request body (for POST/PUT/PATCH). |