[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-vercel-api":3,"mdc--5clyot-key":36,"related-repo-openai-vercel-api":3400,"related-org-openai-vercel-api":3522},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":31,"sourceUrl":34,"mdContent":35},"vercel-api","access Vercel project data via API","Vercel app and REST API expert guidance. Use when the agent needs live access to Vercel projects, deployments, environment variables, domains, logs, or documentation through the connected Vercel app or REST API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"openai","OpenAI","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fopenai.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"Vercel","vercel","tag",{"name":17,"slug":18,"type":15},"MCP","mcp",{"name":20,"slug":21,"type":15},"Deployment","deployment",{"name":23,"slug":24,"type":15},"API Development","api-development",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-04-06T18:41:09.807358",null,465,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fvercel\u002Fskills\u002Fvercel-api","---\nname: vercel-api\ndescription: Vercel app and REST API expert guidance. Use when the agent needs live access to Vercel projects, deployments, environment variables, domains, logs, or documentation through the connected Vercel app or REST API.\nmetadata:\n  priority: 7\n  docs:\n    - \"https:\u002F\u002Fvercel.com\u002Fdocs\u002Frest-api\"\n  sitemap: \"https:\u002F\u002Fvercel.com\u002Fsitemap\u002Fdocs.xml\"\n  pathPatterns:\n    - '.mcp.json'\n    - '.vercel\u002Fproject.json'\n  bashPatterns:\n    - '\\bnpm\\s+(install|i|add)\\s+[^\\n]*@vercel\u002Fsdk\\b'\n    - '\\bpnpm\\s+(install|i|add)\\s+[^\\n]*@vercel\u002Fsdk\\b'\n    - '\\bbun\\s+(install|i|add)\\s+[^\\n]*@vercel\u002Fsdk\\b'\n    - '\\byarn\\s+add\\s+[^\\n]*@vercel\u002Fsdk\\b'\n    - '\\bmcp\\.vercel\\.com\\b'\n---\n\n# Vercel API — Connected App & REST API\n\nYou are an expert in the Vercel platform APIs. This plugin uses the connected Vercel app for live, authenticated access to Vercel resources, and this skill also covers the direct REST API when connector coverage is not enough.\n\n## Connected Vercel App\n\nThe plugin's `.app.json` points Codex at the connected Vercel app. The linked Vercel documentation still describes the underlying MCP server and REST API, and this skill uses that documentation where it helps explain capabilities and fallback paths.\n\n### Connection\n\n```\nURL:       https:\u002F\u002Fmcp.vercel.com\nTransport: Streamable HTTP\nAuth:      OAuth 2.1 (automatic — agent is prompted to authorize on first use)\n```\n\nOn 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.\n\n### Available MCP Tools\n\nThe connected Vercel app exposes these tool categories:\n\n| Category | Capabilities |\n|----------|-------------|\n| **Documentation** | Search and navigate Vercel docs, Next.js docs, AI SDK docs |\n| **Projects** | List projects, get project details, view project settings |\n| **Deployments** | List deployments, inspect deployment details, view build output |\n| **Logs** | Query deployment logs, function invocation logs, build logs |\n| **Domains** | List domains, check domain configuration and DNS status |\n| **Environment Variables** | List env vars per project and environment |\n| **Teams** | List teams, view team members and settings |\n\n### Usage Patterns\n\n#### Diagnose a failed deployment\n\n```\n1. List recent deployments → find the failed one\n2. Inspect deployment → get error summary\n3. Query build logs → identify root cause\n4. Cross-reference with vercel-functions skill for runtime fixes\n```\n\n#### Audit project configuration\n\n```\n1. Get project details → check framework, build settings, root directory\n2. List environment variables → verify required vars are set per environment\n3. List domains → confirm production domain is correctly assigned\n4. Check deployment logs → look for runtime warnings\n```\n\n#### Search documentation\n\n```\n1. Search Vercel docs for a topic → get relevant pages\n2. Read specific doc page → extract configuration examples\n3. Cross-reference with bundled skills for deeper guidance\n```\n\n#### Debug function performance\n\n```\n1. Query function logs → find slow invocations\n2. Inspect deployment → check function region, runtime, memory\n3. Cross-reference with vercel-functions skill for optimization patterns\n```\n\n## Deploying Your Own MCP Server\n\nUse the `mcp-handler` package (renamed from `@vercel\u002Fmcp-adapter`) to build and deploy custom MCP servers on Vercel with Next.js, Nuxt, or SvelteKit:\n\n```bash\nnpm install mcp-handler\n```\n\nMCP servers deployed on Vercel use **Streamable HTTP** transport (replaced SSE in March 2025 MCP spec) — cuts CPU usage vs SSE with no persistent connections required. Used in production by Zapier, Composio, Vapi, and Solana.\n\nSee [Deploy MCP servers to Vercel](https:\u002F\u002Fvercel.com\u002Fdocs\u002Fmcp\u002Fdeploy-mcp-servers-to-vercel) and [GitHub: mcp-handler](https:\u002F\u002Fgithub.com\u002Fvercel\u002Fmcp-handler).\n\n## REST API (Direct Access)\n\nWhen the MCP server doesn't cover a use case (or for write operations), use the Vercel REST API directly with `@vercel\u002Fsdk` or `curl`.\n\n### Authentication\n\n```bash\n# Bearer token auth (personal token or team token)\ncurl -H \"Authorization: Bearer $VERCEL_TOKEN\" https:\u002F\u002Fapi.vercel.com\u002Fv9\u002Fprojects\n```\n\n```typescript\n\u002F\u002F @vercel\u002Fsdk\nimport { Vercel } from '@vercel\u002Fsdk';\n\nconst vercel = new Vercel({ bearerToken: process.env.VERCEL_TOKEN });\n```\n\n### Key Endpoints\n\n| Endpoint | Method | Purpose |\n|----------|--------|---------|\n| `\u002Fv9\u002Fprojects` | GET | List all projects |\n| `\u002Fv9\u002Fprojects\u002F:id` | GET | Get project details |\n| `\u002Fv13\u002Fdeployments` | GET | List deployments |\n| `\u002Fv13\u002Fdeployments` | POST | Create a deployment |\n| `\u002Fv13\u002Fdeployments\u002F:id` | GET | Get deployment details |\n| `\u002Fv9\u002Fprojects\u002F:id\u002Fenv` | GET | List environment variables |\n| `\u002Fv9\u002Fprojects\u002F:id\u002Fenv` | POST | Create environment variable |\n| `\u002Fv6\u002Fdomains` | GET | List domains |\n| `\u002Fv6\u002Fdomains` | POST | Add a domain |\n| `\u002Fv1\u002Fedge-config` | GET | List Edge Configs |\n| `\u002Fv1\u002Ffirewall` | GET | List firewall rules |\n| `\u002Fv1\u002Fdrains` | GET | List all drains |\n| `\u002Fv1\u002Fdrains` | POST | Create a drain |\n| `\u002Fv1\u002Fdrains\u002F:id\u002Ftest` | POST | Test a drain |\n| `\u002Fv1\u002Fdrains\u002F:id` | PATCH | Update a drain |\n| `\u002Fv1\u002Fdrains\u002F:id` | DELETE | Delete a drain |\n| `\u002Fv3\u002Fdeployments\u002F:id\u002Fevents` | GET | Stream runtime logs |\n\n### SDK Examples\n\n#### List deployments\n\n```typescript\nimport { Vercel } from '@vercel\u002Fsdk';\n\nconst vercel = new Vercel({ bearerToken: process.env.VERCEL_TOKEN });\n\nconst { deployments } = await vercel.deployments.list({\n  projectId: 'prj_xxxxx',\n  limit: 10,\n});\n\nfor (const d of deployments) {\n  console.log(`${d.url} — ${d.state} — ${d.created}`);\n}\n```\n\n#### Manage environment variables\n\n```typescript\n\u002F\u002F List env vars\nconst { envs } = await vercel.projects.getProjectEnv({\n  idOrName: 'my-project',\n});\n\n\u002F\u002F Create env var\nawait vercel.projects.createProjectEnv({\n  idOrName: 'my-project',\n  requestBody: {\n    key: 'DATABASE_URL',\n    value: 'postgres:\u002F\u002F...',\n    target: ['production', 'preview'],\n    type: 'encrypted',\n  },\n});\n```\n\n#### Get project domains\n\n```typescript\nconst { domains } = await vercel.projects.getProjectDomains({\n  idOrName: 'my-project',\n});\n\nfor (const d of domains) {\n  console.log(`${d.name} — verified: ${d.verified}`);\n}\n```\n\n## Observability APIs\n\n### Drains (`\u002Fv1\u002Fdrains`)\n\nDrains forward logs, traces, speed insights, and web analytics data to external endpoints. All drain management is REST API or Dashboard (`https:\u002F\u002Fvercel.com\u002Fdashboard\u002F{team}\u002F~\u002Fsettings\u002Flog-drains`) only — no CLI commands exist.\n\n```typescript\nimport { Vercel } from '@vercel\u002Fsdk';\n\nconst vercel = new Vercel({ bearerToken: process.env.VERCEL_TOKEN });\n\n\u002F\u002F List all drains\nconst drains = await vercel.logDrains.getLogDrains({ teamId: 'team_xxxxx' });\n\n\u002F\u002F Create a drain\nawait vercel.logDrains.createLogDrain({\n  teamId: 'team_xxxxx',\n  requestBody: {\n    url: 'https:\u002F\u002Fyour-endpoint.example.com\u002Flogs',\n    type: 'json',\n    sources: ['lambda', 'edge', 'static'],\n    environments: ['production'],\n  },\n});\n```\n\n> For payload schemas (JSON, NDJSON), signature verification, and vendor integration setup, see `⤳ skill: observability`.\n\n### Runtime Logs (`\u002Fv3\u002Fdeployments\u002F:id\u002Fevents`)\n\nStream runtime logs for a deployment. The response uses `application\u002Fstream+json` — each line is a separate JSON object. Always set a timeout to avoid hanging on long-lived streams.\n\n```typescript\n\u002F\u002F Query via MCP (recommended for agents)\n\u002F\u002F Use the get_runtime_logs MCP tool for structured log access\n\n\u002F\u002F Direct REST alternative (streaming)\nconst res = await fetch(\n  `https:\u002F\u002Fapi.vercel.com\u002Fv3\u002Fdeployments\u002F${deploymentId}\u002Fevents`,\n  { headers: { Authorization: `Bearer ${process.env.VERCEL_TOKEN}` } }\n);\n\u002F\u002F Parse as NDJSON — see observability skill for streaming code patterns\n```\n\n## `vercel api` CLI Command (January 2026)\n\nThe `vercel api` command gives agents direct access to the full Vercel REST API from the terminal with no additional configuration. It uses the CLI's existing authentication, so agents can call any endpoint immediately.\n\n```bash\n# Call any REST endpoint directly\nvercel api GET \u002Fv9\u002Fprojects\nvercel api GET \u002Fv13\u002Fdeployments\nvercel api POST \u002Fv9\u002Fprojects\u002F:id\u002Fenv --body '{\"key\":\"MY_VAR\",\"value\":\"val\",\"target\":[\"production\"]}'\n```\n\nThis bridges the gap between the read-only MCP server and the full REST API — agents can perform write operations without needing `@vercel\u002Fsdk` or manual `curl` with tokens.\n\n## When to Use MCP vs CLI vs REST API\n\n| Scenario | Use | Why |\n|----------|-----|-----|\n| Agent needs to inspect\u002Fread Vercel state | **MCP server** | OAuth, structured tools, no token management |\n| Agent needs to deploy or mutate state | **CLI** (`vercel deploy`, `vercel env add`) | Full write access, well-tested |\n| Agent needs ad-hoc API access | **`vercel api`** | Direct REST from terminal, no token setup |\n| Programmatic access from app code | **REST API \u002F @vercel\u002Fsdk** | TypeScript types, fine-grained control |\n| CI\u002FCD pipeline automation | **CLI + VERCEL_TOKEN** | Scriptable, `--prebuilt` for speed |\n| Searching Vercel documentation | **MCP server** | Indexed docs, AI-optimized results |\n\n## Cross-References\n\n- **CLI operations** → `⤳ skill: vercel-cli`\n- **Function configuration** → `⤳ skill: vercel-functions`\n- **Storage APIs** → `⤳ skill: vercel-storage`\n- **Firewall rules** → `⤳ skill: vercel-firewall`\n- **AI SDK MCP client** → `⤳ skill: ai-sdk` (section: MCP Integration)\n- **Drains, log streaming, analytics export** → `⤳ skill: observability`\n\n## Official Documentation\n\n- [Vercel MCP](https:\u002F\u002Fvercel.com\u002Fdocs\u002Fmcp)\n- [Vercel REST API](https:\u002F\u002Fvercel.com\u002Fdocs\u002Frest-api\u002Freference)\n- [@vercel\u002Fsdk](https:\u002F\u002Fwww.npmjs.com\u002Fpackage\u002F@vercel\u002Fsdk)\n- [MCP Authorization Spec](https:\u002F\u002Fspec.modelcontextprotocol.io)\n- [GitHub: Vercel SDK](https:\u002F\u002Fgithub.com\u002Fvercel\u002Fsdk)\n",{"data":37,"body":52},{"name":4,"description":6,"metadata":38},{"priority":39,"docs":40,"sitemap":42,"pathPatterns":43,"bashPatterns":46},7,[41],"https:\u002F\u002Fvercel.com\u002Fdocs\u002Frest-api","https:\u002F\u002Fvercel.com\u002Fsitemap\u002Fdocs.xml",[44,45],".mcp.json",".vercel\u002Fproject.json",[47,48,49,50,51],"\\bnpm\\s+(install|i|add)\\s+[^\\n]*@vercel\u002Fsdk\\b","\\bpnpm\\s+(install|i|add)\\s+[^\\n]*@vercel\u002Fsdk\\b","\\bbun\\s+(install|i|add)\\s+[^\\n]*@vercel\u002Fsdk\\b","\\byarn\\s+add\\s+[^\\n]*@vercel\u002Fsdk\\b","\\bmcp\\.vercel\\.com\\b",{"type":53,"children":54},"root",[55,64,70,77,91,98,110,115,121,126,267,273,280,289,295,304,310,319,325,334,340,361,393,405,430,436,456,462,518,681,687,1070,1076,1081,1504,1510,1893,1899,2125,2131,2143,2156,2661,2677,2689,2702,2908,2920,2932,3029,3048,3054,3233,3239,3336,3342,3394],{"type":56,"tag":57,"props":58,"children":60},"element","h1",{"id":59},"vercel-api-connected-app-rest-api",[61],{"type":62,"value":63},"text","Vercel API — Connected App & REST API",{"type":56,"tag":65,"props":66,"children":67},"p",{},[68],{"type":62,"value":69},"You are an expert in the Vercel platform APIs. This plugin uses the connected Vercel app for live, authenticated access to Vercel resources, and this skill also covers the direct REST API when connector coverage is not enough.",{"type":56,"tag":71,"props":72,"children":74},"h2",{"id":73},"connected-vercel-app",[75],{"type":62,"value":76},"Connected Vercel App",{"type":56,"tag":65,"props":78,"children":79},{},[80,82,89],{"type":62,"value":81},"The plugin's ",{"type":56,"tag":83,"props":84,"children":86},"code",{"className":85},[],[87],{"type":62,"value":88},".app.json",{"type":62,"value":90}," points Codex at the connected Vercel app. The linked Vercel documentation still describes the underlying MCP server and REST API, and this skill uses that documentation where it helps explain capabilities and fallback paths.",{"type":56,"tag":92,"props":93,"children":95},"h3",{"id":94},"connection",[96],{"type":62,"value":97},"Connection",{"type":56,"tag":99,"props":100,"children":104},"pre",{"className":101,"code":103,"language":62},[102],"language-text","URL:       https:\u002F\u002Fmcp.vercel.com\nTransport: Streamable HTTP\nAuth:      OAuth 2.1 (automatic — agent is prompted to authorize on first use)\n",[105],{"type":56,"tag":83,"props":106,"children":108},{"__ignoreMap":107},"",[109],{"type":62,"value":103},{"type":56,"tag":65,"props":111,"children":112},{},[113],{"type":62,"value":114},"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.",{"type":56,"tag":92,"props":116,"children":118},{"id":117},"available-mcp-tools",[119],{"type":62,"value":120},"Available MCP Tools",{"type":56,"tag":65,"props":122,"children":123},{},[124],{"type":62,"value":125},"The connected Vercel app exposes these tool categories:",{"type":56,"tag":127,"props":128,"children":129},"table",{},[130,149],{"type":56,"tag":131,"props":132,"children":133},"thead",{},[134],{"type":56,"tag":135,"props":136,"children":137},"tr",{},[138,144],{"type":56,"tag":139,"props":140,"children":141},"th",{},[142],{"type":62,"value":143},"Category",{"type":56,"tag":139,"props":145,"children":146},{},[147],{"type":62,"value":148},"Capabilities",{"type":56,"tag":150,"props":151,"children":152},"tbody",{},[153,171,187,203,219,235,251],{"type":56,"tag":135,"props":154,"children":155},{},[156,166],{"type":56,"tag":157,"props":158,"children":159},"td",{},[160],{"type":56,"tag":161,"props":162,"children":163},"strong",{},[164],{"type":62,"value":165},"Documentation",{"type":56,"tag":157,"props":167,"children":168},{},[169],{"type":62,"value":170},"Search and navigate Vercel docs, Next.js docs, AI SDK docs",{"type":56,"tag":135,"props":172,"children":173},{},[174,182],{"type":56,"tag":157,"props":175,"children":176},{},[177],{"type":56,"tag":161,"props":178,"children":179},{},[180],{"type":62,"value":181},"Projects",{"type":56,"tag":157,"props":183,"children":184},{},[185],{"type":62,"value":186},"List projects, get project details, view project settings",{"type":56,"tag":135,"props":188,"children":189},{},[190,198],{"type":56,"tag":157,"props":191,"children":192},{},[193],{"type":56,"tag":161,"props":194,"children":195},{},[196],{"type":62,"value":197},"Deployments",{"type":56,"tag":157,"props":199,"children":200},{},[201],{"type":62,"value":202},"List deployments, inspect deployment details, view build output",{"type":56,"tag":135,"props":204,"children":205},{},[206,214],{"type":56,"tag":157,"props":207,"children":208},{},[209],{"type":56,"tag":161,"props":210,"children":211},{},[212],{"type":62,"value":213},"Logs",{"type":56,"tag":157,"props":215,"children":216},{},[217],{"type":62,"value":218},"Query deployment logs, function invocation logs, build logs",{"type":56,"tag":135,"props":220,"children":221},{},[222,230],{"type":56,"tag":157,"props":223,"children":224},{},[225],{"type":56,"tag":161,"props":226,"children":227},{},[228],{"type":62,"value":229},"Domains",{"type":56,"tag":157,"props":231,"children":232},{},[233],{"type":62,"value":234},"List domains, check domain configuration and DNS status",{"type":56,"tag":135,"props":236,"children":237},{},[238,246],{"type":56,"tag":157,"props":239,"children":240},{},[241],{"type":56,"tag":161,"props":242,"children":243},{},[244],{"type":62,"value":245},"Environment Variables",{"type":56,"tag":157,"props":247,"children":248},{},[249],{"type":62,"value":250},"List env vars per project and environment",{"type":56,"tag":135,"props":252,"children":253},{},[254,262],{"type":56,"tag":157,"props":255,"children":256},{},[257],{"type":56,"tag":161,"props":258,"children":259},{},[260],{"type":62,"value":261},"Teams",{"type":56,"tag":157,"props":263,"children":264},{},[265],{"type":62,"value":266},"List teams, view team members and settings",{"type":56,"tag":92,"props":268,"children":270},{"id":269},"usage-patterns",[271],{"type":62,"value":272},"Usage Patterns",{"type":56,"tag":274,"props":275,"children":277},"h4",{"id":276},"diagnose-a-failed-deployment",[278],{"type":62,"value":279},"Diagnose a failed deployment",{"type":56,"tag":99,"props":281,"children":284},{"className":282,"code":283,"language":62},[102],"1. List recent deployments → find the failed one\n2. Inspect deployment → get error summary\n3. Query build logs → identify root cause\n4. Cross-reference with vercel-functions skill for runtime fixes\n",[285],{"type":56,"tag":83,"props":286,"children":287},{"__ignoreMap":107},[288],{"type":62,"value":283},{"type":56,"tag":274,"props":290,"children":292},{"id":291},"audit-project-configuration",[293],{"type":62,"value":294},"Audit project configuration",{"type":56,"tag":99,"props":296,"children":299},{"className":297,"code":298,"language":62},[102],"1. Get project details → check framework, build settings, root directory\n2. List environment variables → verify required vars are set per environment\n3. List domains → confirm production domain is correctly assigned\n4. Check deployment logs → look for runtime warnings\n",[300],{"type":56,"tag":83,"props":301,"children":302},{"__ignoreMap":107},[303],{"type":62,"value":298},{"type":56,"tag":274,"props":305,"children":307},{"id":306},"search-documentation",[308],{"type":62,"value":309},"Search documentation",{"type":56,"tag":99,"props":311,"children":314},{"className":312,"code":313,"language":62},[102],"1. Search Vercel docs for a topic → get relevant pages\n2. Read specific doc page → extract configuration examples\n3. Cross-reference with bundled skills for deeper guidance\n",[315],{"type":56,"tag":83,"props":316,"children":317},{"__ignoreMap":107},[318],{"type":62,"value":313},{"type":56,"tag":274,"props":320,"children":322},{"id":321},"debug-function-performance",[323],{"type":62,"value":324},"Debug function performance",{"type":56,"tag":99,"props":326,"children":329},{"className":327,"code":328,"language":62},[102],"1. Query function logs → find slow invocations\n2. Inspect deployment → check function region, runtime, memory\n3. Cross-reference with vercel-functions skill for optimization patterns\n",[330],{"type":56,"tag":83,"props":331,"children":332},{"__ignoreMap":107},[333],{"type":62,"value":328},{"type":56,"tag":71,"props":335,"children":337},{"id":336},"deploying-your-own-mcp-server",[338],{"type":62,"value":339},"Deploying Your Own MCP Server",{"type":56,"tag":65,"props":341,"children":342},{},[343,345,351,353,359],{"type":62,"value":344},"Use the ",{"type":56,"tag":83,"props":346,"children":348},{"className":347},[],[349],{"type":62,"value":350},"mcp-handler",{"type":62,"value":352}," package (renamed from ",{"type":56,"tag":83,"props":354,"children":356},{"className":355},[],[357],{"type":62,"value":358},"@vercel\u002Fmcp-adapter",{"type":62,"value":360},") to build and deploy custom MCP servers on Vercel with Next.js, Nuxt, or SvelteKit:",{"type":56,"tag":99,"props":362,"children":366},{"className":363,"code":364,"language":365,"meta":107,"style":107},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npm install mcp-handler\n","bash",[367],{"type":56,"tag":83,"props":368,"children":369},{"__ignoreMap":107},[370],{"type":56,"tag":371,"props":372,"children":375},"span",{"class":373,"line":374},"line",1,[376,382,388],{"type":56,"tag":371,"props":377,"children":379},{"style":378},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[380],{"type":62,"value":381},"npm",{"type":56,"tag":371,"props":383,"children":385},{"style":384},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[386],{"type":62,"value":387}," install",{"type":56,"tag":371,"props":389,"children":390},{"style":384},[391],{"type":62,"value":392}," mcp-handler\n",{"type":56,"tag":65,"props":394,"children":395},{},[396,398,403],{"type":62,"value":397},"MCP servers deployed on Vercel use ",{"type":56,"tag":161,"props":399,"children":400},{},[401],{"type":62,"value":402},"Streamable HTTP",{"type":62,"value":404}," transport (replaced SSE in March 2025 MCP spec) — cuts CPU usage vs SSE with no persistent connections required. Used in production by Zapier, Composio, Vapi, and Solana.",{"type":56,"tag":65,"props":406,"children":407},{},[408,410,419,421,428],{"type":62,"value":409},"See ",{"type":56,"tag":411,"props":412,"children":416},"a",{"href":413,"rel":414},"https:\u002F\u002Fvercel.com\u002Fdocs\u002Fmcp\u002Fdeploy-mcp-servers-to-vercel",[415],"nofollow",[417],{"type":62,"value":418},"Deploy MCP servers to Vercel",{"type":62,"value":420}," and ",{"type":56,"tag":411,"props":422,"children":425},{"href":423,"rel":424},"https:\u002F\u002Fgithub.com\u002Fvercel\u002Fmcp-handler",[415],[426],{"type":62,"value":427},"GitHub: mcp-handler",{"type":62,"value":429},".",{"type":56,"tag":71,"props":431,"children":433},{"id":432},"rest-api-direct-access",[434],{"type":62,"value":435},"REST API (Direct Access)",{"type":56,"tag":65,"props":437,"children":438},{},[439,441,447,449,455],{"type":62,"value":440},"When the MCP server doesn't cover a use case (or for write operations), use the Vercel REST API directly with ",{"type":56,"tag":83,"props":442,"children":444},{"className":443},[],[445],{"type":62,"value":446},"@vercel\u002Fsdk",{"type":62,"value":448}," or ",{"type":56,"tag":83,"props":450,"children":452},{"className":451},[],[453],{"type":62,"value":454},"curl",{"type":62,"value":429},{"type":56,"tag":92,"props":457,"children":459},{"id":458},"authentication",[460],{"type":62,"value":461},"Authentication",{"type":56,"tag":99,"props":463,"children":465},{"className":363,"code":464,"language":365,"meta":107,"style":107},"# Bearer token auth (personal token or team token)\ncurl -H \"Authorization: Bearer $VERCEL_TOKEN\" https:\u002F\u002Fapi.vercel.com\u002Fv9\u002Fprojects\n",[466],{"type":56,"tag":83,"props":467,"children":468},{"__ignoreMap":107},[469,478],{"type":56,"tag":371,"props":470,"children":471},{"class":373,"line":374},[472],{"type":56,"tag":371,"props":473,"children":475},{"style":474},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[476],{"type":62,"value":477},"# Bearer token auth (personal token or team token)\n",{"type":56,"tag":371,"props":479,"children":481},{"class":373,"line":480},2,[482,486,491,497,502,508,513],{"type":56,"tag":371,"props":483,"children":484},{"style":378},[485],{"type":62,"value":454},{"type":56,"tag":371,"props":487,"children":488},{"style":384},[489],{"type":62,"value":490}," -H",{"type":56,"tag":371,"props":492,"children":494},{"style":493},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[495],{"type":62,"value":496}," \"",{"type":56,"tag":371,"props":498,"children":499},{"style":384},[500],{"type":62,"value":501},"Authorization: Bearer ",{"type":56,"tag":371,"props":503,"children":505},{"style":504},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[506],{"type":62,"value":507},"$VERCEL_TOKEN",{"type":56,"tag":371,"props":509,"children":510},{"style":493},[511],{"type":62,"value":512},"\"",{"type":56,"tag":371,"props":514,"children":515},{"style":384},[516],{"type":62,"value":517}," https:\u002F\u002Fapi.vercel.com\u002Fv9\u002Fprojects\n",{"type":56,"tag":99,"props":519,"children":523},{"className":520,"code":521,"language":522,"meta":107,"style":107},"language-typescript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u002F\u002F @vercel\u002Fsdk\nimport { Vercel } from '@vercel\u002Fsdk';\n\nconst vercel = new Vercel({ bearerToken: process.env.VERCEL_TOKEN });\n","typescript",[524],{"type":56,"tag":83,"props":525,"children":526},{"__ignoreMap":107},[527,535,583,593],{"type":56,"tag":371,"props":528,"children":529},{"class":373,"line":374},[530],{"type":56,"tag":371,"props":531,"children":532},{"style":474},[533],{"type":62,"value":534},"\u002F\u002F @vercel\u002Fsdk\n",{"type":56,"tag":371,"props":536,"children":537},{"class":373,"line":480},[538,544,549,554,559,564,569,573,578],{"type":56,"tag":371,"props":539,"children":541},{"style":540},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[542],{"type":62,"value":543},"import",{"type":56,"tag":371,"props":545,"children":546},{"style":493},[547],{"type":62,"value":548}," {",{"type":56,"tag":371,"props":550,"children":551},{"style":504},[552],{"type":62,"value":553}," Vercel",{"type":56,"tag":371,"props":555,"children":556},{"style":493},[557],{"type":62,"value":558}," }",{"type":56,"tag":371,"props":560,"children":561},{"style":540},[562],{"type":62,"value":563}," from",{"type":56,"tag":371,"props":565,"children":566},{"style":493},[567],{"type":62,"value":568}," '",{"type":56,"tag":371,"props":570,"children":571},{"style":384},[572],{"type":62,"value":446},{"type":56,"tag":371,"props":574,"children":575},{"style":493},[576],{"type":62,"value":577},"'",{"type":56,"tag":371,"props":579,"children":580},{"style":493},[581],{"type":62,"value":582},";\n",{"type":56,"tag":371,"props":584,"children":586},{"class":373,"line":585},3,[587],{"type":56,"tag":371,"props":588,"children":590},{"emptyLinePlaceholder":589},true,[591],{"type":62,"value":592},"\n",{"type":56,"tag":371,"props":594,"children":596},{"class":373,"line":595},4,[597,603,608,613,618,623,628,633,639,644,649,653,658,662,667,672,677],{"type":56,"tag":371,"props":598,"children":600},{"style":599},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[601],{"type":62,"value":602},"const",{"type":56,"tag":371,"props":604,"children":605},{"style":504},[606],{"type":62,"value":607}," vercel ",{"type":56,"tag":371,"props":609,"children":610},{"style":493},[611],{"type":62,"value":612},"=",{"type":56,"tag":371,"props":614,"children":615},{"style":493},[616],{"type":62,"value":617}," new",{"type":56,"tag":371,"props":619,"children":621},{"style":620},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[622],{"type":62,"value":553},{"type":56,"tag":371,"props":624,"children":625},{"style":504},[626],{"type":62,"value":627},"(",{"type":56,"tag":371,"props":629,"children":630},{"style":493},[631],{"type":62,"value":632},"{",{"type":56,"tag":371,"props":634,"children":636},{"style":635},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[637],{"type":62,"value":638}," bearerToken",{"type":56,"tag":371,"props":640,"children":641},{"style":493},[642],{"type":62,"value":643},":",{"type":56,"tag":371,"props":645,"children":646},{"style":504},[647],{"type":62,"value":648}," process",{"type":56,"tag":371,"props":650,"children":651},{"style":493},[652],{"type":62,"value":429},{"type":56,"tag":371,"props":654,"children":655},{"style":504},[656],{"type":62,"value":657},"env",{"type":56,"tag":371,"props":659,"children":660},{"style":493},[661],{"type":62,"value":429},{"type":56,"tag":371,"props":663,"children":664},{"style":504},[665],{"type":62,"value":666},"VERCEL_TOKEN ",{"type":56,"tag":371,"props":668,"children":669},{"style":493},[670],{"type":62,"value":671},"}",{"type":56,"tag":371,"props":673,"children":674},{"style":504},[675],{"type":62,"value":676},")",{"type":56,"tag":371,"props":678,"children":679},{"style":493},[680],{"type":62,"value":582},{"type":56,"tag":92,"props":682,"children":684},{"id":683},"key-endpoints",[685],{"type":62,"value":686},"Key Endpoints",{"type":56,"tag":127,"props":688,"children":689},{},[690,711],{"type":56,"tag":131,"props":691,"children":692},{},[693],{"type":56,"tag":135,"props":694,"children":695},{},[696,701,706],{"type":56,"tag":139,"props":697,"children":698},{},[699],{"type":62,"value":700},"Endpoint",{"type":56,"tag":139,"props":702,"children":703},{},[704],{"type":62,"value":705},"Method",{"type":56,"tag":139,"props":707,"children":708},{},[709],{"type":62,"value":710},"Purpose",{"type":56,"tag":150,"props":712,"children":713},{},[714,736,757,778,799,820,841,861,882,902,923,944,965,985,1006,1028,1049],{"type":56,"tag":135,"props":715,"children":716},{},[717,726,731],{"type":56,"tag":157,"props":718,"children":719},{},[720],{"type":56,"tag":83,"props":721,"children":723},{"className":722},[],[724],{"type":62,"value":725},"\u002Fv9\u002Fprojects",{"type":56,"tag":157,"props":727,"children":728},{},[729],{"type":62,"value":730},"GET",{"type":56,"tag":157,"props":732,"children":733},{},[734],{"type":62,"value":735},"List all projects",{"type":56,"tag":135,"props":737,"children":738},{},[739,748,752],{"type":56,"tag":157,"props":740,"children":741},{},[742],{"type":56,"tag":83,"props":743,"children":745},{"className":744},[],[746],{"type":62,"value":747},"\u002Fv9\u002Fprojects\u002F:id",{"type":56,"tag":157,"props":749,"children":750},{},[751],{"type":62,"value":730},{"type":56,"tag":157,"props":753,"children":754},{},[755],{"type":62,"value":756},"Get project details",{"type":56,"tag":135,"props":758,"children":759},{},[760,769,773],{"type":56,"tag":157,"props":761,"children":762},{},[763],{"type":56,"tag":83,"props":764,"children":766},{"className":765},[],[767],{"type":62,"value":768},"\u002Fv13\u002Fdeployments",{"type":56,"tag":157,"props":770,"children":771},{},[772],{"type":62,"value":730},{"type":56,"tag":157,"props":774,"children":775},{},[776],{"type":62,"value":777},"List deployments",{"type":56,"tag":135,"props":779,"children":780},{},[781,789,794],{"type":56,"tag":157,"props":782,"children":783},{},[784],{"type":56,"tag":83,"props":785,"children":787},{"className":786},[],[788],{"type":62,"value":768},{"type":56,"tag":157,"props":790,"children":791},{},[792],{"type":62,"value":793},"POST",{"type":56,"tag":157,"props":795,"children":796},{},[797],{"type":62,"value":798},"Create a deployment",{"type":56,"tag":135,"props":800,"children":801},{},[802,811,815],{"type":56,"tag":157,"props":803,"children":804},{},[805],{"type":56,"tag":83,"props":806,"children":808},{"className":807},[],[809],{"type":62,"value":810},"\u002Fv13\u002Fdeployments\u002F:id",{"type":56,"tag":157,"props":812,"children":813},{},[814],{"type":62,"value":730},{"type":56,"tag":157,"props":816,"children":817},{},[818],{"type":62,"value":819},"Get deployment details",{"type":56,"tag":135,"props":821,"children":822},{},[823,832,836],{"type":56,"tag":157,"props":824,"children":825},{},[826],{"type":56,"tag":83,"props":827,"children":829},{"className":828},[],[830],{"type":62,"value":831},"\u002Fv9\u002Fprojects\u002F:id\u002Fenv",{"type":56,"tag":157,"props":833,"children":834},{},[835],{"type":62,"value":730},{"type":56,"tag":157,"props":837,"children":838},{},[839],{"type":62,"value":840},"List environment variables",{"type":56,"tag":135,"props":842,"children":843},{},[844,852,856],{"type":56,"tag":157,"props":845,"children":846},{},[847],{"type":56,"tag":83,"props":848,"children":850},{"className":849},[],[851],{"type":62,"value":831},{"type":56,"tag":157,"props":853,"children":854},{},[855],{"type":62,"value":793},{"type":56,"tag":157,"props":857,"children":858},{},[859],{"type":62,"value":860},"Create environment variable",{"type":56,"tag":135,"props":862,"children":863},{},[864,873,877],{"type":56,"tag":157,"props":865,"children":866},{},[867],{"type":56,"tag":83,"props":868,"children":870},{"className":869},[],[871],{"type":62,"value":872},"\u002Fv6\u002Fdomains",{"type":56,"tag":157,"props":874,"children":875},{},[876],{"type":62,"value":730},{"type":56,"tag":157,"props":878,"children":879},{},[880],{"type":62,"value":881},"List domains",{"type":56,"tag":135,"props":883,"children":884},{},[885,893,897],{"type":56,"tag":157,"props":886,"children":887},{},[888],{"type":56,"tag":83,"props":889,"children":891},{"className":890},[],[892],{"type":62,"value":872},{"type":56,"tag":157,"props":894,"children":895},{},[896],{"type":62,"value":793},{"type":56,"tag":157,"props":898,"children":899},{},[900],{"type":62,"value":901},"Add a domain",{"type":56,"tag":135,"props":903,"children":904},{},[905,914,918],{"type":56,"tag":157,"props":906,"children":907},{},[908],{"type":56,"tag":83,"props":909,"children":911},{"className":910},[],[912],{"type":62,"value":913},"\u002Fv1\u002Fedge-config",{"type":56,"tag":157,"props":915,"children":916},{},[917],{"type":62,"value":730},{"type":56,"tag":157,"props":919,"children":920},{},[921],{"type":62,"value":922},"List Edge Configs",{"type":56,"tag":135,"props":924,"children":925},{},[926,935,939],{"type":56,"tag":157,"props":927,"children":928},{},[929],{"type":56,"tag":83,"props":930,"children":932},{"className":931},[],[933],{"type":62,"value":934},"\u002Fv1\u002Ffirewall",{"type":56,"tag":157,"props":936,"children":937},{},[938],{"type":62,"value":730},{"type":56,"tag":157,"props":940,"children":941},{},[942],{"type":62,"value":943},"List firewall rules",{"type":56,"tag":135,"props":945,"children":946},{},[947,956,960],{"type":56,"tag":157,"props":948,"children":949},{},[950],{"type":56,"tag":83,"props":951,"children":953},{"className":952},[],[954],{"type":62,"value":955},"\u002Fv1\u002Fdrains",{"type":56,"tag":157,"props":957,"children":958},{},[959],{"type":62,"value":730},{"type":56,"tag":157,"props":961,"children":962},{},[963],{"type":62,"value":964},"List all drains",{"type":56,"tag":135,"props":966,"children":967},{},[968,976,980],{"type":56,"tag":157,"props":969,"children":970},{},[971],{"type":56,"tag":83,"props":972,"children":974},{"className":973},[],[975],{"type":62,"value":955},{"type":56,"tag":157,"props":977,"children":978},{},[979],{"type":62,"value":793},{"type":56,"tag":157,"props":981,"children":982},{},[983],{"type":62,"value":984},"Create a drain",{"type":56,"tag":135,"props":986,"children":987},{},[988,997,1001],{"type":56,"tag":157,"props":989,"children":990},{},[991],{"type":56,"tag":83,"props":992,"children":994},{"className":993},[],[995],{"type":62,"value":996},"\u002Fv1\u002Fdrains\u002F:id\u002Ftest",{"type":56,"tag":157,"props":998,"children":999},{},[1000],{"type":62,"value":793},{"type":56,"tag":157,"props":1002,"children":1003},{},[1004],{"type":62,"value":1005},"Test a drain",{"type":56,"tag":135,"props":1007,"children":1008},{},[1009,1018,1023],{"type":56,"tag":157,"props":1010,"children":1011},{},[1012],{"type":56,"tag":83,"props":1013,"children":1015},{"className":1014},[],[1016],{"type":62,"value":1017},"\u002Fv1\u002Fdrains\u002F:id",{"type":56,"tag":157,"props":1019,"children":1020},{},[1021],{"type":62,"value":1022},"PATCH",{"type":56,"tag":157,"props":1024,"children":1025},{},[1026],{"type":62,"value":1027},"Update a drain",{"type":56,"tag":135,"props":1029,"children":1030},{},[1031,1039,1044],{"type":56,"tag":157,"props":1032,"children":1033},{},[1034],{"type":56,"tag":83,"props":1035,"children":1037},{"className":1036},[],[1038],{"type":62,"value":1017},{"type":56,"tag":157,"props":1040,"children":1041},{},[1042],{"type":62,"value":1043},"DELETE",{"type":56,"tag":157,"props":1045,"children":1046},{},[1047],{"type":62,"value":1048},"Delete a drain",{"type":56,"tag":135,"props":1050,"children":1051},{},[1052,1061,1065],{"type":56,"tag":157,"props":1053,"children":1054},{},[1055],{"type":56,"tag":83,"props":1056,"children":1058},{"className":1057},[],[1059],{"type":62,"value":1060},"\u002Fv3\u002Fdeployments\u002F:id\u002Fevents",{"type":56,"tag":157,"props":1062,"children":1063},{},[1064],{"type":62,"value":730},{"type":56,"tag":157,"props":1066,"children":1067},{},[1068],{"type":62,"value":1069},"Stream runtime logs",{"type":56,"tag":92,"props":1071,"children":1073},{"id":1072},"sdk-examples",[1074],{"type":62,"value":1075},"SDK Examples",{"type":56,"tag":274,"props":1077,"children":1079},{"id":1078},"list-deployments",[1080],{"type":62,"value":777},{"type":56,"tag":99,"props":1082,"children":1084},{"className":520,"code":1083,"language":522,"meta":107,"style":107},"import { Vercel } from '@vercel\u002Fsdk';\n\nconst vercel = new Vercel({ bearerToken: process.env.VERCEL_TOKEN });\n\nconst { deployments } = await vercel.deployments.list({\n  projectId: 'prj_xxxxx',\n  limit: 10,\n});\n\nfor (const d of deployments) {\n  console.log(`${d.url} — ${d.state} — ${d.created}`);\n}\n",[1085],{"type":56,"tag":83,"props":1086,"children":1087},{"__ignoreMap":107},[1088,1127,1134,1205,1212,1275,1306,1328,1344,1352,1389,1495],{"type":56,"tag":371,"props":1089,"children":1090},{"class":373,"line":374},[1091,1095,1099,1103,1107,1111,1115,1119,1123],{"type":56,"tag":371,"props":1092,"children":1093},{"style":540},[1094],{"type":62,"value":543},{"type":56,"tag":371,"props":1096,"children":1097},{"style":493},[1098],{"type":62,"value":548},{"type":56,"tag":371,"props":1100,"children":1101},{"style":504},[1102],{"type":62,"value":553},{"type":56,"tag":371,"props":1104,"children":1105},{"style":493},[1106],{"type":62,"value":558},{"type":56,"tag":371,"props":1108,"children":1109},{"style":540},[1110],{"type":62,"value":563},{"type":56,"tag":371,"props":1112,"children":1113},{"style":493},[1114],{"type":62,"value":568},{"type":56,"tag":371,"props":1116,"children":1117},{"style":384},[1118],{"type":62,"value":446},{"type":56,"tag":371,"props":1120,"children":1121},{"style":493},[1122],{"type":62,"value":577},{"type":56,"tag":371,"props":1124,"children":1125},{"style":493},[1126],{"type":62,"value":582},{"type":56,"tag":371,"props":1128,"children":1129},{"class":373,"line":480},[1130],{"type":56,"tag":371,"props":1131,"children":1132},{"emptyLinePlaceholder":589},[1133],{"type":62,"value":592},{"type":56,"tag":371,"props":1135,"children":1136},{"class":373,"line":585},[1137,1141,1145,1149,1153,1157,1161,1165,1169,1173,1177,1181,1185,1189,1193,1197,1201],{"type":56,"tag":371,"props":1138,"children":1139},{"style":599},[1140],{"type":62,"value":602},{"type":56,"tag":371,"props":1142,"children":1143},{"style":504},[1144],{"type":62,"value":607},{"type":56,"tag":371,"props":1146,"children":1147},{"style":493},[1148],{"type":62,"value":612},{"type":56,"tag":371,"props":1150,"children":1151},{"style":493},[1152],{"type":62,"value":617},{"type":56,"tag":371,"props":1154,"children":1155},{"style":620},[1156],{"type":62,"value":553},{"type":56,"tag":371,"props":1158,"children":1159},{"style":504},[1160],{"type":62,"value":627},{"type":56,"tag":371,"props":1162,"children":1163},{"style":493},[1164],{"type":62,"value":632},{"type":56,"tag":371,"props":1166,"children":1167},{"style":635},[1168],{"type":62,"value":638},{"type":56,"tag":371,"props":1170,"children":1171},{"style":493},[1172],{"type":62,"value":643},{"type":56,"tag":371,"props":1174,"children":1175},{"style":504},[1176],{"type":62,"value":648},{"type":56,"tag":371,"props":1178,"children":1179},{"style":493},[1180],{"type":62,"value":429},{"type":56,"tag":371,"props":1182,"children":1183},{"style":504},[1184],{"type":62,"value":657},{"type":56,"tag":371,"props":1186,"children":1187},{"style":493},[1188],{"type":62,"value":429},{"type":56,"tag":371,"props":1190,"children":1191},{"style":504},[1192],{"type":62,"value":666},{"type":56,"tag":371,"props":1194,"children":1195},{"style":493},[1196],{"type":62,"value":671},{"type":56,"tag":371,"props":1198,"children":1199},{"style":504},[1200],{"type":62,"value":676},{"type":56,"tag":371,"props":1202,"children":1203},{"style":493},[1204],{"type":62,"value":582},{"type":56,"tag":371,"props":1206,"children":1207},{"class":373,"line":595},[1208],{"type":56,"tag":371,"props":1209,"children":1210},{"emptyLinePlaceholder":589},[1211],{"type":62,"value":592},{"type":56,"tag":371,"props":1213,"children":1215},{"class":373,"line":1214},5,[1216,1220,1224,1229,1233,1238,1243,1248,1252,1257,1261,1266,1270],{"type":56,"tag":371,"props":1217,"children":1218},{"style":599},[1219],{"type":62,"value":602},{"type":56,"tag":371,"props":1221,"children":1222},{"style":493},[1223],{"type":62,"value":548},{"type":56,"tag":371,"props":1225,"children":1226},{"style":504},[1227],{"type":62,"value":1228}," deployments ",{"type":56,"tag":371,"props":1230,"children":1231},{"style":493},[1232],{"type":62,"value":671},{"type":56,"tag":371,"props":1234,"children":1235},{"style":493},[1236],{"type":62,"value":1237}," =",{"type":56,"tag":371,"props":1239,"children":1240},{"style":540},[1241],{"type":62,"value":1242}," await",{"type":56,"tag":371,"props":1244,"children":1245},{"style":504},[1246],{"type":62,"value":1247}," vercel",{"type":56,"tag":371,"props":1249,"children":1250},{"style":493},[1251],{"type":62,"value":429},{"type":56,"tag":371,"props":1253,"children":1254},{"style":504},[1255],{"type":62,"value":1256},"deployments",{"type":56,"tag":371,"props":1258,"children":1259},{"style":493},[1260],{"type":62,"value":429},{"type":56,"tag":371,"props":1262,"children":1263},{"style":620},[1264],{"type":62,"value":1265},"list",{"type":56,"tag":371,"props":1267,"children":1268},{"style":504},[1269],{"type":62,"value":627},{"type":56,"tag":371,"props":1271,"children":1272},{"style":493},[1273],{"type":62,"value":1274},"{\n",{"type":56,"tag":371,"props":1276,"children":1278},{"class":373,"line":1277},6,[1279,1284,1288,1292,1297,1301],{"type":56,"tag":371,"props":1280,"children":1281},{"style":635},[1282],{"type":62,"value":1283},"  projectId",{"type":56,"tag":371,"props":1285,"children":1286},{"style":493},[1287],{"type":62,"value":643},{"type":56,"tag":371,"props":1289,"children":1290},{"style":493},[1291],{"type":62,"value":568},{"type":56,"tag":371,"props":1293,"children":1294},{"style":384},[1295],{"type":62,"value":1296},"prj_xxxxx",{"type":56,"tag":371,"props":1298,"children":1299},{"style":493},[1300],{"type":62,"value":577},{"type":56,"tag":371,"props":1302,"children":1303},{"style":493},[1304],{"type":62,"value":1305},",\n",{"type":56,"tag":371,"props":1307,"children":1308},{"class":373,"line":39},[1309,1314,1318,1324],{"type":56,"tag":371,"props":1310,"children":1311},{"style":635},[1312],{"type":62,"value":1313},"  limit",{"type":56,"tag":371,"props":1315,"children":1316},{"style":493},[1317],{"type":62,"value":643},{"type":56,"tag":371,"props":1319,"children":1321},{"style":1320},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1322],{"type":62,"value":1323}," 10",{"type":56,"tag":371,"props":1325,"children":1326},{"style":493},[1327],{"type":62,"value":1305},{"type":56,"tag":371,"props":1329,"children":1331},{"class":373,"line":1330},8,[1332,1336,1340],{"type":56,"tag":371,"props":1333,"children":1334},{"style":493},[1335],{"type":62,"value":671},{"type":56,"tag":371,"props":1337,"children":1338},{"style":504},[1339],{"type":62,"value":676},{"type":56,"tag":371,"props":1341,"children":1342},{"style":493},[1343],{"type":62,"value":582},{"type":56,"tag":371,"props":1345,"children":1347},{"class":373,"line":1346},9,[1348],{"type":56,"tag":371,"props":1349,"children":1350},{"emptyLinePlaceholder":589},[1351],{"type":62,"value":592},{"type":56,"tag":371,"props":1353,"children":1355},{"class":373,"line":1354},10,[1356,1361,1366,1370,1375,1380,1385],{"type":56,"tag":371,"props":1357,"children":1358},{"style":540},[1359],{"type":62,"value":1360},"for",{"type":56,"tag":371,"props":1362,"children":1363},{"style":504},[1364],{"type":62,"value":1365}," (",{"type":56,"tag":371,"props":1367,"children":1368},{"style":599},[1369],{"type":62,"value":602},{"type":56,"tag":371,"props":1371,"children":1372},{"style":504},[1373],{"type":62,"value":1374}," d ",{"type":56,"tag":371,"props":1376,"children":1377},{"style":493},[1378],{"type":62,"value":1379},"of",{"type":56,"tag":371,"props":1381,"children":1382},{"style":504},[1383],{"type":62,"value":1384}," deployments) ",{"type":56,"tag":371,"props":1386,"children":1387},{"style":493},[1388],{"type":62,"value":1274},{"type":56,"tag":371,"props":1390,"children":1392},{"class":373,"line":1391},11,[1393,1398,1402,1407,1411,1416,1421,1425,1430,1434,1439,1444,1448,1452,1457,1461,1465,1469,1473,1477,1482,1487,1491],{"type":56,"tag":371,"props":1394,"children":1395},{"style":504},[1396],{"type":62,"value":1397},"  console",{"type":56,"tag":371,"props":1399,"children":1400},{"style":493},[1401],{"type":62,"value":429},{"type":56,"tag":371,"props":1403,"children":1404},{"style":620},[1405],{"type":62,"value":1406},"log",{"type":56,"tag":371,"props":1408,"children":1409},{"style":635},[1410],{"type":62,"value":627},{"type":56,"tag":371,"props":1412,"children":1413},{"style":493},[1414],{"type":62,"value":1415},"`${",{"type":56,"tag":371,"props":1417,"children":1418},{"style":504},[1419],{"type":62,"value":1420},"d",{"type":56,"tag":371,"props":1422,"children":1423},{"style":493},[1424],{"type":62,"value":429},{"type":56,"tag":371,"props":1426,"children":1427},{"style":504},[1428],{"type":62,"value":1429},"url",{"type":56,"tag":371,"props":1431,"children":1432},{"style":493},[1433],{"type":62,"value":671},{"type":56,"tag":371,"props":1435,"children":1436},{"style":384},[1437],{"type":62,"value":1438}," — ",{"type":56,"tag":371,"props":1440,"children":1441},{"style":493},[1442],{"type":62,"value":1443},"${",{"type":56,"tag":371,"props":1445,"children":1446},{"style":504},[1447],{"type":62,"value":1420},{"type":56,"tag":371,"props":1449,"children":1450},{"style":493},[1451],{"type":62,"value":429},{"type":56,"tag":371,"props":1453,"children":1454},{"style":504},[1455],{"type":62,"value":1456},"state",{"type":56,"tag":371,"props":1458,"children":1459},{"style":493},[1460],{"type":62,"value":671},{"type":56,"tag":371,"props":1462,"children":1463},{"style":384},[1464],{"type":62,"value":1438},{"type":56,"tag":371,"props":1466,"children":1467},{"style":493},[1468],{"type":62,"value":1443},{"type":56,"tag":371,"props":1470,"children":1471},{"style":504},[1472],{"type":62,"value":1420},{"type":56,"tag":371,"props":1474,"children":1475},{"style":493},[1476],{"type":62,"value":429},{"type":56,"tag":371,"props":1478,"children":1479},{"style":504},[1480],{"type":62,"value":1481},"created",{"type":56,"tag":371,"props":1483,"children":1484},{"style":493},[1485],{"type":62,"value":1486},"}`",{"type":56,"tag":371,"props":1488,"children":1489},{"style":635},[1490],{"type":62,"value":676},{"type":56,"tag":371,"props":1492,"children":1493},{"style":493},[1494],{"type":62,"value":582},{"type":56,"tag":371,"props":1496,"children":1498},{"class":373,"line":1497},12,[1499],{"type":56,"tag":371,"props":1500,"children":1501},{"style":493},[1502],{"type":62,"value":1503},"}\n",{"type":56,"tag":274,"props":1505,"children":1507},{"id":1506},"manage-environment-variables",[1508],{"type":62,"value":1509},"Manage environment variables",{"type":56,"tag":99,"props":1511,"children":1513},{"className":520,"code":1512,"language":522,"meta":107,"style":107},"\u002F\u002F List env vars\nconst { envs } = await vercel.projects.getProjectEnv({\n  idOrName: 'my-project',\n});\n\n\u002F\u002F Create env var\nawait vercel.projects.createProjectEnv({\n  idOrName: 'my-project',\n  requestBody: {\n    key: 'DATABASE_URL',\n    value: 'postgres:\u002F\u002F...',\n    target: ['production', 'preview'],\n    type: 'encrypted',\n  },\n});\n",[1514],{"type":56,"tag":83,"props":1515,"children":1516},{"__ignoreMap":107},[1517,1525,1583,1612,1627,1634,1642,1679,1706,1723,1752,1781,1838,1868,1877],{"type":56,"tag":371,"props":1518,"children":1519},{"class":373,"line":374},[1520],{"type":56,"tag":371,"props":1521,"children":1522},{"style":474},[1523],{"type":62,"value":1524},"\u002F\u002F List env vars\n",{"type":56,"tag":371,"props":1526,"children":1527},{"class":373,"line":480},[1528,1532,1536,1541,1545,1549,1553,1557,1561,1566,1570,1575,1579],{"type":56,"tag":371,"props":1529,"children":1530},{"style":599},[1531],{"type":62,"value":602},{"type":56,"tag":371,"props":1533,"children":1534},{"style":493},[1535],{"type":62,"value":548},{"type":56,"tag":371,"props":1537,"children":1538},{"style":504},[1539],{"type":62,"value":1540}," envs ",{"type":56,"tag":371,"props":1542,"children":1543},{"style":493},[1544],{"type":62,"value":671},{"type":56,"tag":371,"props":1546,"children":1547},{"style":493},[1548],{"type":62,"value":1237},{"type":56,"tag":371,"props":1550,"children":1551},{"style":540},[1552],{"type":62,"value":1242},{"type":56,"tag":371,"props":1554,"children":1555},{"style":504},[1556],{"type":62,"value":1247},{"type":56,"tag":371,"props":1558,"children":1559},{"style":493},[1560],{"type":62,"value":429},{"type":56,"tag":371,"props":1562,"children":1563},{"style":504},[1564],{"type":62,"value":1565},"projects",{"type":56,"tag":371,"props":1567,"children":1568},{"style":493},[1569],{"type":62,"value":429},{"type":56,"tag":371,"props":1571,"children":1572},{"style":620},[1573],{"type":62,"value":1574},"getProjectEnv",{"type":56,"tag":371,"props":1576,"children":1577},{"style":504},[1578],{"type":62,"value":627},{"type":56,"tag":371,"props":1580,"children":1581},{"style":493},[1582],{"type":62,"value":1274},{"type":56,"tag":371,"props":1584,"children":1585},{"class":373,"line":585},[1586,1591,1595,1599,1604,1608],{"type":56,"tag":371,"props":1587,"children":1588},{"style":635},[1589],{"type":62,"value":1590},"  idOrName",{"type":56,"tag":371,"props":1592,"children":1593},{"style":493},[1594],{"type":62,"value":643},{"type":56,"tag":371,"props":1596,"children":1597},{"style":493},[1598],{"type":62,"value":568},{"type":56,"tag":371,"props":1600,"children":1601},{"style":384},[1602],{"type":62,"value":1603},"my-project",{"type":56,"tag":371,"props":1605,"children":1606},{"style":493},[1607],{"type":62,"value":577},{"type":56,"tag":371,"props":1609,"children":1610},{"style":493},[1611],{"type":62,"value":1305},{"type":56,"tag":371,"props":1613,"children":1614},{"class":373,"line":595},[1615,1619,1623],{"type":56,"tag":371,"props":1616,"children":1617},{"style":493},[1618],{"type":62,"value":671},{"type":56,"tag":371,"props":1620,"children":1621},{"style":504},[1622],{"type":62,"value":676},{"type":56,"tag":371,"props":1624,"children":1625},{"style":493},[1626],{"type":62,"value":582},{"type":56,"tag":371,"props":1628,"children":1629},{"class":373,"line":1214},[1630],{"type":56,"tag":371,"props":1631,"children":1632},{"emptyLinePlaceholder":589},[1633],{"type":62,"value":592},{"type":56,"tag":371,"props":1635,"children":1636},{"class":373,"line":1277},[1637],{"type":56,"tag":371,"props":1638,"children":1639},{"style":474},[1640],{"type":62,"value":1641},"\u002F\u002F Create env var\n",{"type":56,"tag":371,"props":1643,"children":1644},{"class":373,"line":39},[1645,1650,1654,1658,1662,1666,1671,1675],{"type":56,"tag":371,"props":1646,"children":1647},{"style":540},[1648],{"type":62,"value":1649},"await",{"type":56,"tag":371,"props":1651,"children":1652},{"style":504},[1653],{"type":62,"value":1247},{"type":56,"tag":371,"props":1655,"children":1656},{"style":493},[1657],{"type":62,"value":429},{"type":56,"tag":371,"props":1659,"children":1660},{"style":504},[1661],{"type":62,"value":1565},{"type":56,"tag":371,"props":1663,"children":1664},{"style":493},[1665],{"type":62,"value":429},{"type":56,"tag":371,"props":1667,"children":1668},{"style":620},[1669],{"type":62,"value":1670},"createProjectEnv",{"type":56,"tag":371,"props":1672,"children":1673},{"style":504},[1674],{"type":62,"value":627},{"type":56,"tag":371,"props":1676,"children":1677},{"style":493},[1678],{"type":62,"value":1274},{"type":56,"tag":371,"props":1680,"children":1681},{"class":373,"line":1330},[1682,1686,1690,1694,1698,1702],{"type":56,"tag":371,"props":1683,"children":1684},{"style":635},[1685],{"type":62,"value":1590},{"type":56,"tag":371,"props":1687,"children":1688},{"style":493},[1689],{"type":62,"value":643},{"type":56,"tag":371,"props":1691,"children":1692},{"style":493},[1693],{"type":62,"value":568},{"type":56,"tag":371,"props":1695,"children":1696},{"style":384},[1697],{"type":62,"value":1603},{"type":56,"tag":371,"props":1699,"children":1700},{"style":493},[1701],{"type":62,"value":577},{"type":56,"tag":371,"props":1703,"children":1704},{"style":493},[1705],{"type":62,"value":1305},{"type":56,"tag":371,"props":1707,"children":1708},{"class":373,"line":1346},[1709,1714,1718],{"type":56,"tag":371,"props":1710,"children":1711},{"style":635},[1712],{"type":62,"value":1713},"  requestBody",{"type":56,"tag":371,"props":1715,"children":1716},{"style":493},[1717],{"type":62,"value":643},{"type":56,"tag":371,"props":1719,"children":1720},{"style":493},[1721],{"type":62,"value":1722}," {\n",{"type":56,"tag":371,"props":1724,"children":1725},{"class":373,"line":1354},[1726,1731,1735,1739,1744,1748],{"type":56,"tag":371,"props":1727,"children":1728},{"style":635},[1729],{"type":62,"value":1730},"    key",{"type":56,"tag":371,"props":1732,"children":1733},{"style":493},[1734],{"type":62,"value":643},{"type":56,"tag":371,"props":1736,"children":1737},{"style":493},[1738],{"type":62,"value":568},{"type":56,"tag":371,"props":1740,"children":1741},{"style":384},[1742],{"type":62,"value":1743},"DATABASE_URL",{"type":56,"tag":371,"props":1745,"children":1746},{"style":493},[1747],{"type":62,"value":577},{"type":56,"tag":371,"props":1749,"children":1750},{"style":493},[1751],{"type":62,"value":1305},{"type":56,"tag":371,"props":1753,"children":1754},{"class":373,"line":1391},[1755,1760,1764,1768,1773,1777],{"type":56,"tag":371,"props":1756,"children":1757},{"style":635},[1758],{"type":62,"value":1759},"    value",{"type":56,"tag":371,"props":1761,"children":1762},{"style":493},[1763],{"type":62,"value":643},{"type":56,"tag":371,"props":1765,"children":1766},{"style":493},[1767],{"type":62,"value":568},{"type":56,"tag":371,"props":1769,"children":1770},{"style":384},[1771],{"type":62,"value":1772},"postgres:\u002F\u002F...",{"type":56,"tag":371,"props":1774,"children":1775},{"style":493},[1776],{"type":62,"value":577},{"type":56,"tag":371,"props":1778,"children":1779},{"style":493},[1780],{"type":62,"value":1305},{"type":56,"tag":371,"props":1782,"children":1783},{"class":373,"line":1497},[1784,1789,1793,1798,1802,1807,1811,1816,1820,1825,1829,1834],{"type":56,"tag":371,"props":1785,"children":1786},{"style":635},[1787],{"type":62,"value":1788},"    target",{"type":56,"tag":371,"props":1790,"children":1791},{"style":493},[1792],{"type":62,"value":643},{"type":56,"tag":371,"props":1794,"children":1795},{"style":504},[1796],{"type":62,"value":1797}," [",{"type":56,"tag":371,"props":1799,"children":1800},{"style":493},[1801],{"type":62,"value":577},{"type":56,"tag":371,"props":1803,"children":1804},{"style":384},[1805],{"type":62,"value":1806},"production",{"type":56,"tag":371,"props":1808,"children":1809},{"style":493},[1810],{"type":62,"value":577},{"type":56,"tag":371,"props":1812,"children":1813},{"style":493},[1814],{"type":62,"value":1815},",",{"type":56,"tag":371,"props":1817,"children":1818},{"style":493},[1819],{"type":62,"value":568},{"type":56,"tag":371,"props":1821,"children":1822},{"style":384},[1823],{"type":62,"value":1824},"preview",{"type":56,"tag":371,"props":1826,"children":1827},{"style":493},[1828],{"type":62,"value":577},{"type":56,"tag":371,"props":1830,"children":1831},{"style":504},[1832],{"type":62,"value":1833},"]",{"type":56,"tag":371,"props":1835,"children":1836},{"style":493},[1837],{"type":62,"value":1305},{"type":56,"tag":371,"props":1839,"children":1841},{"class":373,"line":1840},13,[1842,1847,1851,1855,1860,1864],{"type":56,"tag":371,"props":1843,"children":1844},{"style":635},[1845],{"type":62,"value":1846},"    type",{"type":56,"tag":371,"props":1848,"children":1849},{"style":493},[1850],{"type":62,"value":643},{"type":56,"tag":371,"props":1852,"children":1853},{"style":493},[1854],{"type":62,"value":568},{"type":56,"tag":371,"props":1856,"children":1857},{"style":384},[1858],{"type":62,"value":1859},"encrypted",{"type":56,"tag":371,"props":1861,"children":1862},{"style":493},[1863],{"type":62,"value":577},{"type":56,"tag":371,"props":1865,"children":1866},{"style":493},[1867],{"type":62,"value":1305},{"type":56,"tag":371,"props":1869,"children":1871},{"class":373,"line":1870},14,[1872],{"type":56,"tag":371,"props":1873,"children":1874},{"style":493},[1875],{"type":62,"value":1876},"  },\n",{"type":56,"tag":371,"props":1878,"children":1880},{"class":373,"line":1879},15,[1881,1885,1889],{"type":56,"tag":371,"props":1882,"children":1883},{"style":493},[1884],{"type":62,"value":671},{"type":56,"tag":371,"props":1886,"children":1887},{"style":504},[1888],{"type":62,"value":676},{"type":56,"tag":371,"props":1890,"children":1891},{"style":493},[1892],{"type":62,"value":582},{"type":56,"tag":274,"props":1894,"children":1896},{"id":1895},"get-project-domains",[1897],{"type":62,"value":1898},"Get project domains",{"type":56,"tag":99,"props":1900,"children":1902},{"className":520,"code":1901,"language":522,"meta":107,"style":107},"const { domains } = await vercel.projects.getProjectDomains({\n  idOrName: 'my-project',\n});\n\nfor (const d of domains) {\n  console.log(`${d.name} — verified: ${d.verified}`);\n}\n",[1903],{"type":56,"tag":83,"props":1904,"children":1905},{"__ignoreMap":107},[1906,1963,1990,2005,2012,2044,2118],{"type":56,"tag":371,"props":1907,"children":1908},{"class":373,"line":374},[1909,1913,1917,1922,1926,1930,1934,1938,1942,1946,1950,1955,1959],{"type":56,"tag":371,"props":1910,"children":1911},{"style":599},[1912],{"type":62,"value":602},{"type":56,"tag":371,"props":1914,"children":1915},{"style":493},[1916],{"type":62,"value":548},{"type":56,"tag":371,"props":1918,"children":1919},{"style":504},[1920],{"type":62,"value":1921}," domains ",{"type":56,"tag":371,"props":1923,"children":1924},{"style":493},[1925],{"type":62,"value":671},{"type":56,"tag":371,"props":1927,"children":1928},{"style":493},[1929],{"type":62,"value":1237},{"type":56,"tag":371,"props":1931,"children":1932},{"style":540},[1933],{"type":62,"value":1242},{"type":56,"tag":371,"props":1935,"children":1936},{"style":504},[1937],{"type":62,"value":1247},{"type":56,"tag":371,"props":1939,"children":1940},{"style":493},[1941],{"type":62,"value":429},{"type":56,"tag":371,"props":1943,"children":1944},{"style":504},[1945],{"type":62,"value":1565},{"type":56,"tag":371,"props":1947,"children":1948},{"style":493},[1949],{"type":62,"value":429},{"type":56,"tag":371,"props":1951,"children":1952},{"style":620},[1953],{"type":62,"value":1954},"getProjectDomains",{"type":56,"tag":371,"props":1956,"children":1957},{"style":504},[1958],{"type":62,"value":627},{"type":56,"tag":371,"props":1960,"children":1961},{"style":493},[1962],{"type":62,"value":1274},{"type":56,"tag":371,"props":1964,"children":1965},{"class":373,"line":480},[1966,1970,1974,1978,1982,1986],{"type":56,"tag":371,"props":1967,"children":1968},{"style":635},[1969],{"type":62,"value":1590},{"type":56,"tag":371,"props":1971,"children":1972},{"style":493},[1973],{"type":62,"value":643},{"type":56,"tag":371,"props":1975,"children":1976},{"style":493},[1977],{"type":62,"value":568},{"type":56,"tag":371,"props":1979,"children":1980},{"style":384},[1981],{"type":62,"value":1603},{"type":56,"tag":371,"props":1983,"children":1984},{"style":493},[1985],{"type":62,"value":577},{"type":56,"tag":371,"props":1987,"children":1988},{"style":493},[1989],{"type":62,"value":1305},{"type":56,"tag":371,"props":1991,"children":1992},{"class":373,"line":585},[1993,1997,2001],{"type":56,"tag":371,"props":1994,"children":1995},{"style":493},[1996],{"type":62,"value":671},{"type":56,"tag":371,"props":1998,"children":1999},{"style":504},[2000],{"type":62,"value":676},{"type":56,"tag":371,"props":2002,"children":2003},{"style":493},[2004],{"type":62,"value":582},{"type":56,"tag":371,"props":2006,"children":2007},{"class":373,"line":595},[2008],{"type":56,"tag":371,"props":2009,"children":2010},{"emptyLinePlaceholder":589},[2011],{"type":62,"value":592},{"type":56,"tag":371,"props":2013,"children":2014},{"class":373,"line":1214},[2015,2019,2023,2027,2031,2035,2040],{"type":56,"tag":371,"props":2016,"children":2017},{"style":540},[2018],{"type":62,"value":1360},{"type":56,"tag":371,"props":2020,"children":2021},{"style":504},[2022],{"type":62,"value":1365},{"type":56,"tag":371,"props":2024,"children":2025},{"style":599},[2026],{"type":62,"value":602},{"type":56,"tag":371,"props":2028,"children":2029},{"style":504},[2030],{"type":62,"value":1374},{"type":56,"tag":371,"props":2032,"children":2033},{"style":493},[2034],{"type":62,"value":1379},{"type":56,"tag":371,"props":2036,"children":2037},{"style":504},[2038],{"type":62,"value":2039}," domains) ",{"type":56,"tag":371,"props":2041,"children":2042},{"style":493},[2043],{"type":62,"value":1274},{"type":56,"tag":371,"props":2045,"children":2046},{"class":373,"line":1277},[2047,2051,2055,2059,2063,2067,2071,2075,2080,2084,2089,2093,2097,2101,2106,2110,2114],{"type":56,"tag":371,"props":2048,"children":2049},{"style":504},[2050],{"type":62,"value":1397},{"type":56,"tag":371,"props":2052,"children":2053},{"style":493},[2054],{"type":62,"value":429},{"type":56,"tag":371,"props":2056,"children":2057},{"style":620},[2058],{"type":62,"value":1406},{"type":56,"tag":371,"props":2060,"children":2061},{"style":635},[2062],{"type":62,"value":627},{"type":56,"tag":371,"props":2064,"children":2065},{"style":493},[2066],{"type":62,"value":1415},{"type":56,"tag":371,"props":2068,"children":2069},{"style":504},[2070],{"type":62,"value":1420},{"type":56,"tag":371,"props":2072,"children":2073},{"style":493},[2074],{"type":62,"value":429},{"type":56,"tag":371,"props":2076,"children":2077},{"style":504},[2078],{"type":62,"value":2079},"name",{"type":56,"tag":371,"props":2081,"children":2082},{"style":493},[2083],{"type":62,"value":671},{"type":56,"tag":371,"props":2085,"children":2086},{"style":384},[2087],{"type":62,"value":2088}," — verified: ",{"type":56,"tag":371,"props":2090,"children":2091},{"style":493},[2092],{"type":62,"value":1443},{"type":56,"tag":371,"props":2094,"children":2095},{"style":504},[2096],{"type":62,"value":1420},{"type":56,"tag":371,"props":2098,"children":2099},{"style":493},[2100],{"type":62,"value":429},{"type":56,"tag":371,"props":2102,"children":2103},{"style":504},[2104],{"type":62,"value":2105},"verified",{"type":56,"tag":371,"props":2107,"children":2108},{"style":493},[2109],{"type":62,"value":1486},{"type":56,"tag":371,"props":2111,"children":2112},{"style":635},[2113],{"type":62,"value":676},{"type":56,"tag":371,"props":2115,"children":2116},{"style":493},[2117],{"type":62,"value":582},{"type":56,"tag":371,"props":2119,"children":2120},{"class":373,"line":39},[2121],{"type":56,"tag":371,"props":2122,"children":2123},{"style":493},[2124],{"type":62,"value":1503},{"type":56,"tag":71,"props":2126,"children":2128},{"id":2127},"observability-apis",[2129],{"type":62,"value":2130},"Observability APIs",{"type":56,"tag":92,"props":2132,"children":2134},{"id":2133},"drains-v1drains",[2135,2137,2142],{"type":62,"value":2136},"Drains (",{"type":56,"tag":83,"props":2138,"children":2140},{"className":2139},[],[2141],{"type":62,"value":955},{"type":62,"value":676},{"type":56,"tag":65,"props":2144,"children":2145},{},[2146,2148,2154],{"type":62,"value":2147},"Drains forward logs, traces, speed insights, and web analytics data to external endpoints. All drain management is REST API or Dashboard (",{"type":56,"tag":83,"props":2149,"children":2151},{"className":2150},[],[2152],{"type":62,"value":2153},"https:\u002F\u002Fvercel.com\u002Fdashboard\u002F{team}\u002F~\u002Fsettings\u002Flog-drains",{"type":62,"value":2155},") only — no CLI commands exist.",{"type":56,"tag":99,"props":2157,"children":2159},{"className":520,"code":2158,"language":522,"meta":107,"style":107},"import { Vercel } from '@vercel\u002Fsdk';\n\nconst vercel = new Vercel({ bearerToken: process.env.VERCEL_TOKEN });\n\n\u002F\u002F List all drains\nconst drains = await vercel.logDrains.getLogDrains({ teamId: 'team_xxxxx' });\n\n\u002F\u002F Create a drain\nawait vercel.logDrains.createLogDrain({\n  teamId: 'team_xxxxx',\n  requestBody: {\n    url: 'https:\u002F\u002Fyour-endpoint.example.com\u002Flogs',\n    type: 'json',\n    sources: ['lambda', 'edge', 'static'],\n    environments: ['production'],\n  },\n});\n",[2160],{"type":56,"tag":83,"props":2161,"children":2162},{"__ignoreMap":107},[2163,2202,2209,2280,2287,2295,2379,2386,2394,2430,2458,2473,2502,2530,2601,2637,2645],{"type":56,"tag":371,"props":2164,"children":2165},{"class":373,"line":374},[2166,2170,2174,2178,2182,2186,2190,2194,2198],{"type":56,"tag":371,"props":2167,"children":2168},{"style":540},[2169],{"type":62,"value":543},{"type":56,"tag":371,"props":2171,"children":2172},{"style":493},[2173],{"type":62,"value":548},{"type":56,"tag":371,"props":2175,"children":2176},{"style":504},[2177],{"type":62,"value":553},{"type":56,"tag":371,"props":2179,"children":2180},{"style":493},[2181],{"type":62,"value":558},{"type":56,"tag":371,"props":2183,"children":2184},{"style":540},[2185],{"type":62,"value":563},{"type":56,"tag":371,"props":2187,"children":2188},{"style":493},[2189],{"type":62,"value":568},{"type":56,"tag":371,"props":2191,"children":2192},{"style":384},[2193],{"type":62,"value":446},{"type":56,"tag":371,"props":2195,"children":2196},{"style":493},[2197],{"type":62,"value":577},{"type":56,"tag":371,"props":2199,"children":2200},{"style":493},[2201],{"type":62,"value":582},{"type":56,"tag":371,"props":2203,"children":2204},{"class":373,"line":480},[2205],{"type":56,"tag":371,"props":2206,"children":2207},{"emptyLinePlaceholder":589},[2208],{"type":62,"value":592},{"type":56,"tag":371,"props":2210,"children":2211},{"class":373,"line":585},[2212,2216,2220,2224,2228,2232,2236,2240,2244,2248,2252,2256,2260,2264,2268,2272,2276],{"type":56,"tag":371,"props":2213,"children":2214},{"style":599},[2215],{"type":62,"value":602},{"type":56,"tag":371,"props":2217,"children":2218},{"style":504},[2219],{"type":62,"value":607},{"type":56,"tag":371,"props":2221,"children":2222},{"style":493},[2223],{"type":62,"value":612},{"type":56,"tag":371,"props":2225,"children":2226},{"style":493},[2227],{"type":62,"value":617},{"type":56,"tag":371,"props":2229,"children":2230},{"style":620},[2231],{"type":62,"value":553},{"type":56,"tag":371,"props":2233,"children":2234},{"style":504},[2235],{"type":62,"value":627},{"type":56,"tag":371,"props":2237,"children":2238},{"style":493},[2239],{"type":62,"value":632},{"type":56,"tag":371,"props":2241,"children":2242},{"style":635},[2243],{"type":62,"value":638},{"type":56,"tag":371,"props":2245,"children":2246},{"style":493},[2247],{"type":62,"value":643},{"type":56,"tag":371,"props":2249,"children":2250},{"style":504},[2251],{"type":62,"value":648},{"type":56,"tag":371,"props":2253,"children":2254},{"style":493},[2255],{"type":62,"value":429},{"type":56,"tag":371,"props":2257,"children":2258},{"style":504},[2259],{"type":62,"value":657},{"type":56,"tag":371,"props":2261,"children":2262},{"style":493},[2263],{"type":62,"value":429},{"type":56,"tag":371,"props":2265,"children":2266},{"style":504},[2267],{"type":62,"value":666},{"type":56,"tag":371,"props":2269,"children":2270},{"style":493},[2271],{"type":62,"value":671},{"type":56,"tag":371,"props":2273,"children":2274},{"style":504},[2275],{"type":62,"value":676},{"type":56,"tag":371,"props":2277,"children":2278},{"style":493},[2279],{"type":62,"value":582},{"type":56,"tag":371,"props":2281,"children":2282},{"class":373,"line":595},[2283],{"type":56,"tag":371,"props":2284,"children":2285},{"emptyLinePlaceholder":589},[2286],{"type":62,"value":592},{"type":56,"tag":371,"props":2288,"children":2289},{"class":373,"line":1214},[2290],{"type":56,"tag":371,"props":2291,"children":2292},{"style":474},[2293],{"type":62,"value":2294},"\u002F\u002F List all drains\n",{"type":56,"tag":371,"props":2296,"children":2297},{"class":373,"line":1277},[2298,2302,2307,2311,2315,2319,2323,2328,2332,2337,2341,2345,2350,2354,2358,2363,2367,2371,2375],{"type":56,"tag":371,"props":2299,"children":2300},{"style":599},[2301],{"type":62,"value":602},{"type":56,"tag":371,"props":2303,"children":2304},{"style":504},[2305],{"type":62,"value":2306}," drains ",{"type":56,"tag":371,"props":2308,"children":2309},{"style":493},[2310],{"type":62,"value":612},{"type":56,"tag":371,"props":2312,"children":2313},{"style":540},[2314],{"type":62,"value":1242},{"type":56,"tag":371,"props":2316,"children":2317},{"style":504},[2318],{"type":62,"value":1247},{"type":56,"tag":371,"props":2320,"children":2321},{"style":493},[2322],{"type":62,"value":429},{"type":56,"tag":371,"props":2324,"children":2325},{"style":504},[2326],{"type":62,"value":2327},"logDrains",{"type":56,"tag":371,"props":2329,"children":2330},{"style":493},[2331],{"type":62,"value":429},{"type":56,"tag":371,"props":2333,"children":2334},{"style":620},[2335],{"type":62,"value":2336},"getLogDrains",{"type":56,"tag":371,"props":2338,"children":2339},{"style":504},[2340],{"type":62,"value":627},{"type":56,"tag":371,"props":2342,"children":2343},{"style":493},[2344],{"type":62,"value":632},{"type":56,"tag":371,"props":2346,"children":2347},{"style":635},[2348],{"type":62,"value":2349}," teamId",{"type":56,"tag":371,"props":2351,"children":2352},{"style":493},[2353],{"type":62,"value":643},{"type":56,"tag":371,"props":2355,"children":2356},{"style":493},[2357],{"type":62,"value":568},{"type":56,"tag":371,"props":2359,"children":2360},{"style":384},[2361],{"type":62,"value":2362},"team_xxxxx",{"type":56,"tag":371,"props":2364,"children":2365},{"style":493},[2366],{"type":62,"value":577},{"type":56,"tag":371,"props":2368,"children":2369},{"style":493},[2370],{"type":62,"value":558},{"type":56,"tag":371,"props":2372,"children":2373},{"style":504},[2374],{"type":62,"value":676},{"type":56,"tag":371,"props":2376,"children":2377},{"style":493},[2378],{"type":62,"value":582},{"type":56,"tag":371,"props":2380,"children":2381},{"class":373,"line":39},[2382],{"type":56,"tag":371,"props":2383,"children":2384},{"emptyLinePlaceholder":589},[2385],{"type":62,"value":592},{"type":56,"tag":371,"props":2387,"children":2388},{"class":373,"line":1330},[2389],{"type":56,"tag":371,"props":2390,"children":2391},{"style":474},[2392],{"type":62,"value":2393},"\u002F\u002F Create a drain\n",{"type":56,"tag":371,"props":2395,"children":2396},{"class":373,"line":1346},[2397,2401,2405,2409,2413,2417,2422,2426],{"type":56,"tag":371,"props":2398,"children":2399},{"style":540},[2400],{"type":62,"value":1649},{"type":56,"tag":371,"props":2402,"children":2403},{"style":504},[2404],{"type":62,"value":1247},{"type":56,"tag":371,"props":2406,"children":2407},{"style":493},[2408],{"type":62,"value":429},{"type":56,"tag":371,"props":2410,"children":2411},{"style":504},[2412],{"type":62,"value":2327},{"type":56,"tag":371,"props":2414,"children":2415},{"style":493},[2416],{"type":62,"value":429},{"type":56,"tag":371,"props":2418,"children":2419},{"style":620},[2420],{"type":62,"value":2421},"createLogDrain",{"type":56,"tag":371,"props":2423,"children":2424},{"style":504},[2425],{"type":62,"value":627},{"type":56,"tag":371,"props":2427,"children":2428},{"style":493},[2429],{"type":62,"value":1274},{"type":56,"tag":371,"props":2431,"children":2432},{"class":373,"line":1354},[2433,2438,2442,2446,2450,2454],{"type":56,"tag":371,"props":2434,"children":2435},{"style":635},[2436],{"type":62,"value":2437},"  teamId",{"type":56,"tag":371,"props":2439,"children":2440},{"style":493},[2441],{"type":62,"value":643},{"type":56,"tag":371,"props":2443,"children":2444},{"style":493},[2445],{"type":62,"value":568},{"type":56,"tag":371,"props":2447,"children":2448},{"style":384},[2449],{"type":62,"value":2362},{"type":56,"tag":371,"props":2451,"children":2452},{"style":493},[2453],{"type":62,"value":577},{"type":56,"tag":371,"props":2455,"children":2456},{"style":493},[2457],{"type":62,"value":1305},{"type":56,"tag":371,"props":2459,"children":2460},{"class":373,"line":1391},[2461,2465,2469],{"type":56,"tag":371,"props":2462,"children":2463},{"style":635},[2464],{"type":62,"value":1713},{"type":56,"tag":371,"props":2466,"children":2467},{"style":493},[2468],{"type":62,"value":643},{"type":56,"tag":371,"props":2470,"children":2471},{"style":493},[2472],{"type":62,"value":1722},{"type":56,"tag":371,"props":2474,"children":2475},{"class":373,"line":1497},[2476,2481,2485,2489,2494,2498],{"type":56,"tag":371,"props":2477,"children":2478},{"style":635},[2479],{"type":62,"value":2480},"    url",{"type":56,"tag":371,"props":2482,"children":2483},{"style":493},[2484],{"type":62,"value":643},{"type":56,"tag":371,"props":2486,"children":2487},{"style":493},[2488],{"type":62,"value":568},{"type":56,"tag":371,"props":2490,"children":2491},{"style":384},[2492],{"type":62,"value":2493},"https:\u002F\u002Fyour-endpoint.example.com\u002Flogs",{"type":56,"tag":371,"props":2495,"children":2496},{"style":493},[2497],{"type":62,"value":577},{"type":56,"tag":371,"props":2499,"children":2500},{"style":493},[2501],{"type":62,"value":1305},{"type":56,"tag":371,"props":2503,"children":2504},{"class":373,"line":1840},[2505,2509,2513,2517,2522,2526],{"type":56,"tag":371,"props":2506,"children":2507},{"style":635},[2508],{"type":62,"value":1846},{"type":56,"tag":371,"props":2510,"children":2511},{"style":493},[2512],{"type":62,"value":643},{"type":56,"tag":371,"props":2514,"children":2515},{"style":493},[2516],{"type":62,"value":568},{"type":56,"tag":371,"props":2518,"children":2519},{"style":384},[2520],{"type":62,"value":2521},"json",{"type":56,"tag":371,"props":2523,"children":2524},{"style":493},[2525],{"type":62,"value":577},{"type":56,"tag":371,"props":2527,"children":2528},{"style":493},[2529],{"type":62,"value":1305},{"type":56,"tag":371,"props":2531,"children":2532},{"class":373,"line":1870},[2533,2538,2542,2546,2550,2555,2559,2563,2567,2572,2576,2580,2584,2589,2593,2597],{"type":56,"tag":371,"props":2534,"children":2535},{"style":635},[2536],{"type":62,"value":2537},"    sources",{"type":56,"tag":371,"props":2539,"children":2540},{"style":493},[2541],{"type":62,"value":643},{"type":56,"tag":371,"props":2543,"children":2544},{"style":504},[2545],{"type":62,"value":1797},{"type":56,"tag":371,"props":2547,"children":2548},{"style":493},[2549],{"type":62,"value":577},{"type":56,"tag":371,"props":2551,"children":2552},{"style":384},[2553],{"type":62,"value":2554},"lambda",{"type":56,"tag":371,"props":2556,"children":2557},{"style":493},[2558],{"type":62,"value":577},{"type":56,"tag":371,"props":2560,"children":2561},{"style":493},[2562],{"type":62,"value":1815},{"type":56,"tag":371,"props":2564,"children":2565},{"style":493},[2566],{"type":62,"value":568},{"type":56,"tag":371,"props":2568,"children":2569},{"style":384},[2570],{"type":62,"value":2571},"edge",{"type":56,"tag":371,"props":2573,"children":2574},{"style":493},[2575],{"type":62,"value":577},{"type":56,"tag":371,"props":2577,"children":2578},{"style":493},[2579],{"type":62,"value":1815},{"type":56,"tag":371,"props":2581,"children":2582},{"style":493},[2583],{"type":62,"value":568},{"type":56,"tag":371,"props":2585,"children":2586},{"style":384},[2587],{"type":62,"value":2588},"static",{"type":56,"tag":371,"props":2590,"children":2591},{"style":493},[2592],{"type":62,"value":577},{"type":56,"tag":371,"props":2594,"children":2595},{"style":504},[2596],{"type":62,"value":1833},{"type":56,"tag":371,"props":2598,"children":2599},{"style":493},[2600],{"type":62,"value":1305},{"type":56,"tag":371,"props":2602,"children":2603},{"class":373,"line":1879},[2604,2609,2613,2617,2621,2625,2629,2633],{"type":56,"tag":371,"props":2605,"children":2606},{"style":635},[2607],{"type":62,"value":2608},"    environments",{"type":56,"tag":371,"props":2610,"children":2611},{"style":493},[2612],{"type":62,"value":643},{"type":56,"tag":371,"props":2614,"children":2615},{"style":504},[2616],{"type":62,"value":1797},{"type":56,"tag":371,"props":2618,"children":2619},{"style":493},[2620],{"type":62,"value":577},{"type":56,"tag":371,"props":2622,"children":2623},{"style":384},[2624],{"type":62,"value":1806},{"type":56,"tag":371,"props":2626,"children":2627},{"style":493},[2628],{"type":62,"value":577},{"type":56,"tag":371,"props":2630,"children":2631},{"style":504},[2632],{"type":62,"value":1833},{"type":56,"tag":371,"props":2634,"children":2635},{"style":493},[2636],{"type":62,"value":1305},{"type":56,"tag":371,"props":2638,"children":2640},{"class":373,"line":2639},16,[2641],{"type":56,"tag":371,"props":2642,"children":2643},{"style":493},[2644],{"type":62,"value":1876},{"type":56,"tag":371,"props":2646,"children":2648},{"class":373,"line":2647},17,[2649,2653,2657],{"type":56,"tag":371,"props":2650,"children":2651},{"style":493},[2652],{"type":62,"value":671},{"type":56,"tag":371,"props":2654,"children":2655},{"style":504},[2656],{"type":62,"value":676},{"type":56,"tag":371,"props":2658,"children":2659},{"style":493},[2660],{"type":62,"value":582},{"type":56,"tag":2662,"props":2663,"children":2664},"blockquote",{},[2665],{"type":56,"tag":65,"props":2666,"children":2667},{},[2668,2670,2676],{"type":62,"value":2669},"For payload schemas (JSON, NDJSON), signature verification, and vendor integration setup, see ",{"type":56,"tag":83,"props":2671,"children":2673},{"className":2672},[],[2674],{"type":62,"value":2675},"⤳ skill: observability",{"type":62,"value":429},{"type":56,"tag":92,"props":2678,"children":2680},{"id":2679},"runtime-logs-v3deploymentsidevents",[2681,2683,2688],{"type":62,"value":2682},"Runtime Logs (",{"type":56,"tag":83,"props":2684,"children":2686},{"className":2685},[],[2687],{"type":62,"value":1060},{"type":62,"value":676},{"type":56,"tag":65,"props":2690,"children":2691},{},[2692,2694,2700],{"type":62,"value":2693},"Stream runtime logs for a deployment. The response uses ",{"type":56,"tag":83,"props":2695,"children":2697},{"className":2696},[],[2698],{"type":62,"value":2699},"application\u002Fstream+json",{"type":62,"value":2701}," — each line is a separate JSON object. Always set a timeout to avoid hanging on long-lived streams.",{"type":56,"tag":99,"props":2703,"children":2705},{"className":520,"code":2704,"language":522,"meta":107,"style":107},"\u002F\u002F Query via MCP (recommended for agents)\n\u002F\u002F Use the get_runtime_logs MCP tool for structured log access\n\n\u002F\u002F Direct REST alternative (streaming)\nconst res = await fetch(\n  `https:\u002F\u002Fapi.vercel.com\u002Fv3\u002Fdeployments\u002F${deploymentId}\u002Fevents`,\n  { headers: { Authorization: `Bearer ${process.env.VERCEL_TOKEN}` } }\n);\n\u002F\u002F Parse as NDJSON — see observability skill for streaming code patterns\n",[2706],{"type":56,"tag":83,"props":2707,"children":2708},{"__ignoreMap":107},[2709,2717,2725,2732,2740,2770,2810,2889,2900],{"type":56,"tag":371,"props":2710,"children":2711},{"class":373,"line":374},[2712],{"type":56,"tag":371,"props":2713,"children":2714},{"style":474},[2715],{"type":62,"value":2716},"\u002F\u002F Query via MCP (recommended for agents)\n",{"type":56,"tag":371,"props":2718,"children":2719},{"class":373,"line":480},[2720],{"type":56,"tag":371,"props":2721,"children":2722},{"style":474},[2723],{"type":62,"value":2724},"\u002F\u002F Use the get_runtime_logs MCP tool for structured log access\n",{"type":56,"tag":371,"props":2726,"children":2727},{"class":373,"line":585},[2728],{"type":56,"tag":371,"props":2729,"children":2730},{"emptyLinePlaceholder":589},[2731],{"type":62,"value":592},{"type":56,"tag":371,"props":2733,"children":2734},{"class":373,"line":595},[2735],{"type":56,"tag":371,"props":2736,"children":2737},{"style":474},[2738],{"type":62,"value":2739},"\u002F\u002F Direct REST alternative (streaming)\n",{"type":56,"tag":371,"props":2741,"children":2742},{"class":373,"line":1214},[2743,2747,2752,2756,2760,2765],{"type":56,"tag":371,"props":2744,"children":2745},{"style":599},[2746],{"type":62,"value":602},{"type":56,"tag":371,"props":2748,"children":2749},{"style":504},[2750],{"type":62,"value":2751}," res ",{"type":56,"tag":371,"props":2753,"children":2754},{"style":493},[2755],{"type":62,"value":612},{"type":56,"tag":371,"props":2757,"children":2758},{"style":540},[2759],{"type":62,"value":1242},{"type":56,"tag":371,"props":2761,"children":2762},{"style":620},[2763],{"type":62,"value":2764}," fetch",{"type":56,"tag":371,"props":2766,"children":2767},{"style":504},[2768],{"type":62,"value":2769},"(\n",{"type":56,"tag":371,"props":2771,"children":2772},{"class":373,"line":1277},[2773,2778,2783,2787,2792,2796,2801,2806],{"type":56,"tag":371,"props":2774,"children":2775},{"style":493},[2776],{"type":62,"value":2777},"  `",{"type":56,"tag":371,"props":2779,"children":2780},{"style":384},[2781],{"type":62,"value":2782},"https:\u002F\u002Fapi.vercel.com\u002Fv3\u002Fdeployments\u002F",{"type":56,"tag":371,"props":2784,"children":2785},{"style":493},[2786],{"type":62,"value":1443},{"type":56,"tag":371,"props":2788,"children":2789},{"style":504},[2790],{"type":62,"value":2791},"deploymentId",{"type":56,"tag":371,"props":2793,"children":2794},{"style":493},[2795],{"type":62,"value":671},{"type":56,"tag":371,"props":2797,"children":2798},{"style":384},[2799],{"type":62,"value":2800},"\u002Fevents",{"type":56,"tag":371,"props":2802,"children":2803},{"style":493},[2804],{"type":62,"value":2805},"`",{"type":56,"tag":371,"props":2807,"children":2808},{"style":493},[2809],{"type":62,"value":1305},{"type":56,"tag":371,"props":2811,"children":2812},{"class":373,"line":39},[2813,2818,2823,2827,2831,2836,2840,2845,2850,2854,2859,2863,2867,2871,2876,2880,2884],{"type":56,"tag":371,"props":2814,"children":2815},{"style":493},[2816],{"type":62,"value":2817},"  {",{"type":56,"tag":371,"props":2819,"children":2820},{"style":635},[2821],{"type":62,"value":2822}," headers",{"type":56,"tag":371,"props":2824,"children":2825},{"style":493},[2826],{"type":62,"value":643},{"type":56,"tag":371,"props":2828,"children":2829},{"style":493},[2830],{"type":62,"value":548},{"type":56,"tag":371,"props":2832,"children":2833},{"style":635},[2834],{"type":62,"value":2835}," Authorization",{"type":56,"tag":371,"props":2837,"children":2838},{"style":493},[2839],{"type":62,"value":643},{"type":56,"tag":371,"props":2841,"children":2842},{"style":493},[2843],{"type":62,"value":2844}," `",{"type":56,"tag":371,"props":2846,"children":2847},{"style":384},[2848],{"type":62,"value":2849},"Bearer ",{"type":56,"tag":371,"props":2851,"children":2852},{"style":493},[2853],{"type":62,"value":1443},{"type":56,"tag":371,"props":2855,"children":2856},{"style":504},[2857],{"type":62,"value":2858},"process",{"type":56,"tag":371,"props":2860,"children":2861},{"style":493},[2862],{"type":62,"value":429},{"type":56,"tag":371,"props":2864,"children":2865},{"style":504},[2866],{"type":62,"value":657},{"type":56,"tag":371,"props":2868,"children":2869},{"style":493},[2870],{"type":62,"value":429},{"type":56,"tag":371,"props":2872,"children":2873},{"style":504},[2874],{"type":62,"value":2875},"VERCEL_TOKEN",{"type":56,"tag":371,"props":2877,"children":2878},{"style":493},[2879],{"type":62,"value":1486},{"type":56,"tag":371,"props":2881,"children":2882},{"style":493},[2883],{"type":62,"value":558},{"type":56,"tag":371,"props":2885,"children":2886},{"style":493},[2887],{"type":62,"value":2888}," }\n",{"type":56,"tag":371,"props":2890,"children":2891},{"class":373,"line":1330},[2892,2896],{"type":56,"tag":371,"props":2893,"children":2894},{"style":504},[2895],{"type":62,"value":676},{"type":56,"tag":371,"props":2897,"children":2898},{"style":493},[2899],{"type":62,"value":582},{"type":56,"tag":371,"props":2901,"children":2902},{"class":373,"line":1346},[2903],{"type":56,"tag":371,"props":2904,"children":2905},{"style":474},[2906],{"type":62,"value":2907},"\u002F\u002F Parse as NDJSON — see observability skill for streaming code patterns\n",{"type":56,"tag":71,"props":2909,"children":2911},{"id":2910},"vercel-api-cli-command-january-2026",[2912,2918],{"type":56,"tag":83,"props":2913,"children":2915},{"className":2914},[],[2916],{"type":62,"value":2917},"vercel api",{"type":62,"value":2919}," CLI Command (January 2026)",{"type":56,"tag":65,"props":2921,"children":2922},{},[2923,2925,2930],{"type":62,"value":2924},"The ",{"type":56,"tag":83,"props":2926,"children":2928},{"className":2927},[],[2929],{"type":62,"value":2917},{"type":62,"value":2931}," command gives agents direct access to the full Vercel REST API from the terminal with no additional configuration. It uses the CLI's existing authentication, so agents can call any endpoint immediately.",{"type":56,"tag":99,"props":2933,"children":2935},{"className":363,"code":2934,"language":365,"meta":107,"style":107},"# Call any REST endpoint directly\nvercel api GET \u002Fv9\u002Fprojects\nvercel api GET \u002Fv13\u002Fdeployments\nvercel api POST \u002Fv9\u002Fprojects\u002F:id\u002Fenv --body '{\"key\":\"MY_VAR\",\"value\":\"val\",\"target\":[\"production\"]}'\n",[2936],{"type":56,"tag":83,"props":2937,"children":2938},{"__ignoreMap":107},[2939,2947,2969,2989],{"type":56,"tag":371,"props":2940,"children":2941},{"class":373,"line":374},[2942],{"type":56,"tag":371,"props":2943,"children":2944},{"style":474},[2945],{"type":62,"value":2946},"# Call any REST endpoint directly\n",{"type":56,"tag":371,"props":2948,"children":2949},{"class":373,"line":480},[2950,2954,2959,2964],{"type":56,"tag":371,"props":2951,"children":2952},{"style":378},[2953],{"type":62,"value":14},{"type":56,"tag":371,"props":2955,"children":2956},{"style":384},[2957],{"type":62,"value":2958}," api",{"type":56,"tag":371,"props":2960,"children":2961},{"style":384},[2962],{"type":62,"value":2963}," GET",{"type":56,"tag":371,"props":2965,"children":2966},{"style":384},[2967],{"type":62,"value":2968}," \u002Fv9\u002Fprojects\n",{"type":56,"tag":371,"props":2970,"children":2971},{"class":373,"line":585},[2972,2976,2980,2984],{"type":56,"tag":371,"props":2973,"children":2974},{"style":378},[2975],{"type":62,"value":14},{"type":56,"tag":371,"props":2977,"children":2978},{"style":384},[2979],{"type":62,"value":2958},{"type":56,"tag":371,"props":2981,"children":2982},{"style":384},[2983],{"type":62,"value":2963},{"type":56,"tag":371,"props":2985,"children":2986},{"style":384},[2987],{"type":62,"value":2988}," \u002Fv13\u002Fdeployments\n",{"type":56,"tag":371,"props":2990,"children":2991},{"class":373,"line":595},[2992,2996,3000,3005,3010,3015,3019,3024],{"type":56,"tag":371,"props":2993,"children":2994},{"style":378},[2995],{"type":62,"value":14},{"type":56,"tag":371,"props":2997,"children":2998},{"style":384},[2999],{"type":62,"value":2958},{"type":56,"tag":371,"props":3001,"children":3002},{"style":384},[3003],{"type":62,"value":3004}," POST",{"type":56,"tag":371,"props":3006,"children":3007},{"style":384},[3008],{"type":62,"value":3009}," \u002Fv9\u002Fprojects\u002F:id\u002Fenv",{"type":56,"tag":371,"props":3011,"children":3012},{"style":384},[3013],{"type":62,"value":3014}," --body",{"type":56,"tag":371,"props":3016,"children":3017},{"style":493},[3018],{"type":62,"value":568},{"type":56,"tag":371,"props":3020,"children":3021},{"style":384},[3022],{"type":62,"value":3023},"{\"key\":\"MY_VAR\",\"value\":\"val\",\"target\":[\"production\"]}",{"type":56,"tag":371,"props":3025,"children":3026},{"style":493},[3027],{"type":62,"value":3028},"'\n",{"type":56,"tag":65,"props":3030,"children":3031},{},[3032,3034,3039,3041,3046],{"type":62,"value":3033},"This bridges the gap between the read-only MCP server and the full REST API — agents can perform write operations without needing ",{"type":56,"tag":83,"props":3035,"children":3037},{"className":3036},[],[3038],{"type":62,"value":446},{"type":62,"value":3040}," or manual ",{"type":56,"tag":83,"props":3042,"children":3044},{"className":3043},[],[3045],{"type":62,"value":454},{"type":62,"value":3047}," with tokens.",{"type":56,"tag":71,"props":3049,"children":3051},{"id":3050},"when-to-use-mcp-vs-cli-vs-rest-api",[3052],{"type":62,"value":3053},"When to Use MCP vs CLI vs REST API",{"type":56,"tag":127,"props":3055,"children":3056},{},[3057,3078],{"type":56,"tag":131,"props":3058,"children":3059},{},[3060],{"type":56,"tag":135,"props":3061,"children":3062},{},[3063,3068,3073],{"type":56,"tag":139,"props":3064,"children":3065},{},[3066],{"type":62,"value":3067},"Scenario",{"type":56,"tag":139,"props":3069,"children":3070},{},[3071],{"type":62,"value":3072},"Use",{"type":56,"tag":139,"props":3074,"children":3075},{},[3076],{"type":62,"value":3077},"Why",{"type":56,"tag":150,"props":3079,"children":3080},{},[3081,3102,3139,3163,3184,3213],{"type":56,"tag":135,"props":3082,"children":3083},{},[3084,3089,3097],{"type":56,"tag":157,"props":3085,"children":3086},{},[3087],{"type":62,"value":3088},"Agent needs to inspect\u002Fread Vercel state",{"type":56,"tag":157,"props":3090,"children":3091},{},[3092],{"type":56,"tag":161,"props":3093,"children":3094},{},[3095],{"type":62,"value":3096},"MCP server",{"type":56,"tag":157,"props":3098,"children":3099},{},[3100],{"type":62,"value":3101},"OAuth, structured tools, no token management",{"type":56,"tag":135,"props":3103,"children":3104},{},[3105,3110,3134],{"type":56,"tag":157,"props":3106,"children":3107},{},[3108],{"type":62,"value":3109},"Agent needs to deploy or mutate state",{"type":56,"tag":157,"props":3111,"children":3112},{},[3113,3118,3119,3125,3127,3133],{"type":56,"tag":161,"props":3114,"children":3115},{},[3116],{"type":62,"value":3117},"CLI",{"type":62,"value":1365},{"type":56,"tag":83,"props":3120,"children":3122},{"className":3121},[],[3123],{"type":62,"value":3124},"vercel deploy",{"type":62,"value":3126},", ",{"type":56,"tag":83,"props":3128,"children":3130},{"className":3129},[],[3131],{"type":62,"value":3132},"vercel env add",{"type":62,"value":676},{"type":56,"tag":157,"props":3135,"children":3136},{},[3137],{"type":62,"value":3138},"Full write access, well-tested",{"type":56,"tag":135,"props":3140,"children":3141},{},[3142,3147,3158],{"type":56,"tag":157,"props":3143,"children":3144},{},[3145],{"type":62,"value":3146},"Agent needs ad-hoc API access",{"type":56,"tag":157,"props":3148,"children":3149},{},[3150],{"type":56,"tag":161,"props":3151,"children":3152},{},[3153],{"type":56,"tag":83,"props":3154,"children":3156},{"className":3155},[],[3157],{"type":62,"value":2917},{"type":56,"tag":157,"props":3159,"children":3160},{},[3161],{"type":62,"value":3162},"Direct REST from terminal, no token setup",{"type":56,"tag":135,"props":3164,"children":3165},{},[3166,3171,3179],{"type":56,"tag":157,"props":3167,"children":3168},{},[3169],{"type":62,"value":3170},"Programmatic access from app code",{"type":56,"tag":157,"props":3172,"children":3173},{},[3174],{"type":56,"tag":161,"props":3175,"children":3176},{},[3177],{"type":62,"value":3178},"REST API \u002F @vercel\u002Fsdk",{"type":56,"tag":157,"props":3180,"children":3181},{},[3182],{"type":62,"value":3183},"TypeScript types, fine-grained control",{"type":56,"tag":135,"props":3185,"children":3186},{},[3187,3192,3200],{"type":56,"tag":157,"props":3188,"children":3189},{},[3190],{"type":62,"value":3191},"CI\u002FCD pipeline automation",{"type":56,"tag":157,"props":3193,"children":3194},{},[3195],{"type":56,"tag":161,"props":3196,"children":3197},{},[3198],{"type":62,"value":3199},"CLI + VERCEL_TOKEN",{"type":56,"tag":157,"props":3201,"children":3202},{},[3203,3205,3211],{"type":62,"value":3204},"Scriptable, ",{"type":56,"tag":83,"props":3206,"children":3208},{"className":3207},[],[3209],{"type":62,"value":3210},"--prebuilt",{"type":62,"value":3212}," for speed",{"type":56,"tag":135,"props":3214,"children":3215},{},[3216,3221,3228],{"type":56,"tag":157,"props":3217,"children":3218},{},[3219],{"type":62,"value":3220},"Searching Vercel documentation",{"type":56,"tag":157,"props":3222,"children":3223},{},[3224],{"type":56,"tag":161,"props":3225,"children":3226},{},[3227],{"type":62,"value":3096},{"type":56,"tag":157,"props":3229,"children":3230},{},[3231],{"type":62,"value":3232},"Indexed docs, AI-optimized results",{"type":56,"tag":71,"props":3234,"children":3236},{"id":3235},"cross-references",[3237],{"type":62,"value":3238},"Cross-References",{"type":56,"tag":3240,"props":3241,"children":3242},"ul",{},[3243,3260,3275,3290,3305,3322],{"type":56,"tag":3244,"props":3245,"children":3246},"li",{},[3247,3252,3254],{"type":56,"tag":161,"props":3248,"children":3249},{},[3250],{"type":62,"value":3251},"CLI operations",{"type":62,"value":3253}," → ",{"type":56,"tag":83,"props":3255,"children":3257},{"className":3256},[],[3258],{"type":62,"value":3259},"⤳ skill: vercel-cli",{"type":56,"tag":3244,"props":3261,"children":3262},{},[3263,3268,3269],{"type":56,"tag":161,"props":3264,"children":3265},{},[3266],{"type":62,"value":3267},"Function configuration",{"type":62,"value":3253},{"type":56,"tag":83,"props":3270,"children":3272},{"className":3271},[],[3273],{"type":62,"value":3274},"⤳ skill: vercel-functions",{"type":56,"tag":3244,"props":3276,"children":3277},{},[3278,3283,3284],{"type":56,"tag":161,"props":3279,"children":3280},{},[3281],{"type":62,"value":3282},"Storage APIs",{"type":62,"value":3253},{"type":56,"tag":83,"props":3285,"children":3287},{"className":3286},[],[3288],{"type":62,"value":3289},"⤳ skill: vercel-storage",{"type":56,"tag":3244,"props":3291,"children":3292},{},[3293,3298,3299],{"type":56,"tag":161,"props":3294,"children":3295},{},[3296],{"type":62,"value":3297},"Firewall rules",{"type":62,"value":3253},{"type":56,"tag":83,"props":3300,"children":3302},{"className":3301},[],[3303],{"type":62,"value":3304},"⤳ skill: vercel-firewall",{"type":56,"tag":3244,"props":3306,"children":3307},{},[3308,3313,3314,3320],{"type":56,"tag":161,"props":3309,"children":3310},{},[3311],{"type":62,"value":3312},"AI SDK MCP client",{"type":62,"value":3253},{"type":56,"tag":83,"props":3315,"children":3317},{"className":3316},[],[3318],{"type":62,"value":3319},"⤳ skill: ai-sdk",{"type":62,"value":3321}," (section: MCP Integration)",{"type":56,"tag":3244,"props":3323,"children":3324},{},[3325,3330,3331],{"type":56,"tag":161,"props":3326,"children":3327},{},[3328],{"type":62,"value":3329},"Drains, log streaming, analytics export",{"type":62,"value":3253},{"type":56,"tag":83,"props":3332,"children":3334},{"className":3333},[],[3335],{"type":62,"value":2675},{"type":56,"tag":71,"props":3337,"children":3339},{"id":3338},"official-documentation",[3340],{"type":62,"value":3341},"Official Documentation",{"type":56,"tag":3240,"props":3343,"children":3344},{},[3345,3355,3365,3374,3384],{"type":56,"tag":3244,"props":3346,"children":3347},{},[3348],{"type":56,"tag":411,"props":3349,"children":3352},{"href":3350,"rel":3351},"https:\u002F\u002Fvercel.com\u002Fdocs\u002Fmcp",[415],[3353],{"type":62,"value":3354},"Vercel MCP",{"type":56,"tag":3244,"props":3356,"children":3357},{},[3358],{"type":56,"tag":411,"props":3359,"children":3362},{"href":3360,"rel":3361},"https:\u002F\u002Fvercel.com\u002Fdocs\u002Frest-api\u002Freference",[415],[3363],{"type":62,"value":3364},"Vercel REST API",{"type":56,"tag":3244,"props":3366,"children":3367},{},[3368],{"type":56,"tag":411,"props":3369,"children":3372},{"href":3370,"rel":3371},"https:\u002F\u002Fwww.npmjs.com\u002Fpackage\u002F@vercel\u002Fsdk",[415],[3373],{"type":62,"value":446},{"type":56,"tag":3244,"props":3375,"children":3376},{},[3377],{"type":56,"tag":411,"props":3378,"children":3381},{"href":3379,"rel":3380},"https:\u002F\u002Fspec.modelcontextprotocol.io",[415],[3382],{"type":62,"value":3383},"MCP Authorization Spec",{"type":56,"tag":3244,"props":3385,"children":3386},{},[3387],{"type":56,"tag":411,"props":3388,"children":3391},{"href":3389,"rel":3390},"https:\u002F\u002Fgithub.com\u002Fvercel\u002Fsdk",[415],[3392],{"type":62,"value":3393},"GitHub: Vercel SDK",{"type":56,"tag":3395,"props":3396,"children":3397},"style",{},[3398],{"type":62,"value":3399},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":3401,"total":3521},[3402,3421,3437,3449,3469,3489,3509],{"slug":3403,"name":3403,"fn":3404,"description":3405,"org":3406,"tags":3407,"stars":25,"repoUrl":26,"updatedAt":3420},"accessibility-and-inclusive-visualization","make data visualizations accessible","Make data visualizations accessible and inclusive. Use when the user needs chart or diagram accessibility guidance, text alternatives for complex visuals, color and contrast review, keyboard support, reduced-motion behavior for animation or parallax, or an accessibility QA workflow for exported figures, UML-like diagrams, and dashboards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3408,3411,3414,3417],{"name":3409,"slug":3410,"type":15},"Accessibility","accessibility",{"name":3412,"slug":3413,"type":15},"Charts","charts",{"name":3415,"slug":3416,"type":15},"Data Visualization","data-visualization",{"name":3418,"slug":3419,"type":15},"Design","design","2026-06-30T19:00:57.102",{"slug":3422,"name":3422,"fn":3423,"description":3424,"org":3425,"tags":3426,"stars":25,"repoUrl":26,"updatedAt":3436},"agent-browser","automate browser interactions for agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, verify dev server output, test web apps, navigate pages, fill forms, click buttons, take screenshots, extract data, or automate any browser task. Also triggers when a dev server starts so you can verify it visually.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3427,3430,3433],{"name":3428,"slug":3429,"type":15},"Agents","agents",{"name":3431,"slug":3432,"type":15},"Browser Automation","browser-automation",{"name":3434,"slug":3435,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":3438,"name":3438,"fn":3439,"description":3440,"org":3441,"tags":3442,"stars":25,"repoUrl":26,"updatedAt":3448},"agent-browser-verify","verify dev server output with automated browser","Automated browser verification for dev servers. Triggers when a dev server starts to run a visual gut-check with agent-browser — verifies the page loads, checks for console errors, validates key UI elements, and reports pass\u002Ffail before continuing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3443,3444,3447],{"name":3431,"slug":3432,"type":15},{"name":3445,"slug":3446,"type":15},"Local Development","local-development",{"name":3434,"slug":3435,"type":15},"2026-04-06T18:41:17.526867",{"slug":3450,"name":3450,"fn":3451,"description":3452,"org":3453,"tags":3454,"stars":25,"repoUrl":26,"updatedAt":3468},"agents-sdk","build AI agents on Cloudflare Workers","Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, or chat applications. Covers Agent class, state management, callable RPC, Workflows integration, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3455,3456,3459,3462,3465],{"name":3428,"slug":3429,"type":15},{"name":3457,"slug":3458,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":3460,"slug":3461,"type":15},"SDK","sdk",{"name":3463,"slug":3464,"type":15},"Serverless","serverless",{"name":3466,"slug":3467,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":3470,"name":3470,"fn":3471,"description":3472,"org":3473,"tags":3474,"stars":25,"repoUrl":26,"updatedAt":3488},"ai-elements","build chat UIs with AI Elements","AI Elements component library guidance — pre-built React components for AI interfaces built on shadcn\u002Fui. Use when building chat UIs, message displays, tool call rendering, streaming responses, reasoning panels, or any AI-native interface with the AI SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3475,3478,3481,3484,3487],{"name":3476,"slug":3477,"type":15},"Frontend","frontend",{"name":3479,"slug":3480,"type":15},"React","react",{"name":3482,"slug":3483,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":3485,"slug":3486,"type":15},"UI Components","ui-components",{"name":13,"slug":14,"type":15},"2026-04-06T18:40:59.619419",{"slug":3490,"name":3490,"fn":3491,"description":3492,"org":3493,"tags":3494,"stars":25,"repoUrl":26,"updatedAt":3508},"ai-gateway","configure Vercel AI Gateway","Vercel AI Gateway expert guidance. Use when configuring model routing, provider failover, cost tracking, or managing multiple AI providers through a unified API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3495,3498,3501,3504,3507],{"name":3496,"slug":3497,"type":15},"AI Infrastructure","ai-infrastructure",{"name":3499,"slug":3500,"type":15},"Cost Optimization","cost-optimization",{"name":3502,"slug":3503,"type":15},"LLM","llm",{"name":3505,"slug":3506,"type":15},"Performance","performance",{"name":13,"slug":14,"type":15},"2026-04-06T18:40:44.377464",{"slug":3510,"name":3510,"fn":3511,"description":3512,"org":3513,"tags":3514,"stars":25,"repoUrl":26,"updatedAt":3520},"ai-generation-persistence","implement persistence patterns for AI generations","AI generation persistence patterns — unique IDs, addressable URLs, database storage, and cost tracking for every LLM generation",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3515,3516,3519],{"name":3499,"slug":3500,"type":15},{"name":3517,"slug":3518,"type":15},"Database","database",{"name":3502,"slug":3503,"type":15},"2026-04-06T18:41:08.513425",600,{"items":3523,"total":3712},[3524,3545,3568,3583,3596,3611,3630,3642,3656,3669,3681,3696],{"slug":3525,"name":3525,"fn":3526,"description":3527,"org":3528,"tags":3529,"stars":3542,"repoUrl":3543,"updatedAt":3544},"prior-auth-packet-builder","build healthcare prior authorization packets","Build a concise prior authorization packet from local case files and payer policy docs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3530,3533,3536,3539],{"name":3531,"slug":3532,"type":15},"Documents","documents",{"name":3534,"slug":3535,"type":15},"Healthcare","healthcare",{"name":3537,"slug":3538,"type":15},"Insurance","insurance",{"name":3540,"slug":3541,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":3546,"name":3546,"fn":3547,"description":3548,"org":3549,"tags":3550,"stars":3565,"repoUrl":3566,"updatedAt":3567},"aspnet-core","build ASP.NET Core web applications","Build, review, refactor, or architect ASP.NET Core web applications using current official guidance for .NET web development. Use when working on Blazor Web Apps, Razor Pages, MVC, Minimal APIs, controller-based Web APIs, SignalR, gRPC, middleware, dependency injection, configuration, authentication, authorization, testing, performance, deployment, or ASP.NET Core upgrades.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3551,3554,3556,3559,3562],{"name":3552,"slug":3553,"type":15},".NET","dotnet",{"name":3555,"slug":3546,"type":15},"ASP.NET Core",{"name":3557,"slug":3558,"type":15},"Blazor","blazor",{"name":3560,"slug":3561,"type":15},"C#","csharp",{"name":3563,"slug":3564,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":3569,"name":3569,"fn":3570,"description":3571,"org":3572,"tags":3573,"stars":3565,"repoUrl":3566,"updatedAt":3582},"chatgpt-apps","build ChatGPT Apps SDK applications","Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3574,3577,3580,3581],{"name":3575,"slug":3576,"type":15},"Apps SDK","apps-sdk",{"name":3578,"slug":3579,"type":15},"ChatGPT","chatgpt",{"name":17,"slug":18,"type":15},{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":3584,"name":3584,"fn":3585,"description":3586,"org":3587,"tags":3588,"stars":3565,"repoUrl":3566,"updatedAt":3595},"cli-creator","build CLIs from API docs","Build a composable CLI for Codex from API docs, an OpenAPI spec, existing curl examples, an SDK, a web app, an admin tool, or a local script. Use when the user wants Codex to create a command-line tool that can run from any repo, expose composable read\u002Fwrite commands, return stable JSON, manage auth, and pair with a companion skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3589,3590,3592],{"name":23,"slug":24,"type":15},{"name":3117,"slug":3591,"type":15},"cli",{"name":3593,"slug":3594,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":3597,"name":3597,"fn":3598,"description":3599,"org":3600,"tags":3601,"stars":3565,"repoUrl":3566,"updatedAt":3610},"cloudflare-deploy","deploy projects to Cloudflare","Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3602,3605,3608,3609],{"name":3603,"slug":3604,"type":15},"Cloudflare","cloudflare",{"name":3606,"slug":3607,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":3457,"slug":3458,"type":15},{"name":20,"slug":21,"type":15},"2026-04-12T05:07:14.275118",{"slug":3612,"name":3612,"fn":3613,"description":3614,"org":3615,"tags":3616,"stars":3565,"repoUrl":3566,"updatedAt":3629},"define-goal","define and set measurable project goals","Help the user define a concrete, measurable goal before starting work, especially when they ask to use the goal tool, create a goal, set an objective, clarify success criteria, or turn a fuzzy intention into a quantitative outcome. Use this skill for goal creation and goal refinement only; it does not manage durable snapshots, decision logs, or long-running execution artifacts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3617,3620,3623,3626],{"name":3618,"slug":3619,"type":15},"Productivity","productivity",{"name":3621,"slug":3622,"type":15},"Project Management","project-management",{"name":3624,"slug":3625,"type":15},"Strategy","strategy",{"name":3627,"slug":3628,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":3631,"name":3631,"fn":3632,"description":3633,"org":3634,"tags":3635,"stars":3565,"repoUrl":3566,"updatedAt":3641},"figma","translate Figma designs into code","Use the Figma MCP server to fetch design context, screenshots, variables, and assets from Figma, and to translate Figma nodes into production code. Trigger when a task involves Figma URLs, node IDs, design-to-code implementation, or Figma MCP setup and troubleshooting.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3636,3637,3639,3640],{"name":3418,"slug":3419,"type":15},{"name":3638,"slug":3631,"type":15},"Figma",{"name":3476,"slug":3477,"type":15},{"name":17,"slug":18,"type":15},"2026-04-12T05:06:47.939943",{"slug":3643,"name":3643,"fn":3644,"description":3645,"org":3646,"tags":3647,"stars":3565,"repoUrl":3566,"updatedAt":3655},"figma-code-connect-components","connect Figma designs to code components","Connects Figma design components to code components using Code Connect mapping tools. Use when user says \"code connect\", \"connect this component to code\", \"map this component\", \"link component to code\", \"create code connect mapping\", or wants to establish mappings between Figma designs and code implementations. For canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3648,3649,3652,3653,3654],{"name":3418,"slug":3419,"type":15},{"name":3650,"slug":3651,"type":15},"Design System","design-system",{"name":3638,"slug":3631,"type":15},{"name":3476,"slug":3477,"type":15},{"name":3485,"slug":3486,"type":15},"2026-05-10T05:59:52.971881",{"slug":3657,"name":3657,"fn":3658,"description":3659,"org":3660,"tags":3661,"stars":3565,"repoUrl":3566,"updatedAt":3668},"figma-create-design-system-rules","generate design system rules from Figma","Generates custom design system rules for the user's codebase. Use when user says \"create design system rules\", \"generate rules for my project\", \"set up design rules\", \"customize design system guidelines\", or wants to establish project-specific conventions for Figma-to-code workflows. Requires Figma MCP server connection.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3662,3663,3664,3666,3667],{"name":3418,"slug":3419,"type":15},{"name":3650,"slug":3651,"type":15},{"name":165,"slug":3665,"type":15},"documentation",{"name":3638,"slug":3631,"type":15},{"name":3476,"slug":3477,"type":15},"2026-05-16T06:07:47.821474",{"slug":3670,"name":3670,"fn":3671,"description":3672,"org":3673,"tags":3674,"stars":3565,"repoUrl":3566,"updatedAt":3680},"figma-implement-design","translate Figma designs into application code","Translates Figma designs into production-ready application code with 1:1 visual fidelity. Use when implementing UI code from Figma files, when user mentions \"implement design\", \"generate code\", \"implement component\", provides Figma URLs, or asks to build components matching Figma specs. For Figma canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3675,3676,3677,3678,3679],{"name":3418,"slug":3419,"type":15},{"name":3638,"slug":3631,"type":15},{"name":3476,"slug":3477,"type":15},{"name":3485,"slug":3486,"type":15},{"name":3563,"slug":3564,"type":15},"2026-05-16T06:07:40.583615",{"slug":3682,"name":3682,"fn":3683,"description":3684,"org":3685,"tags":3686,"stars":3565,"repoUrl":3566,"updatedAt":3695},"hatch-pet","create animated pets for Codex","Create, repair, validate, visually QA, and package Codex-compatible animated pets and pet spritesheets from character art, generated images, company or prospect brand cues, or visual references. Use when a user wants a lightweight-worker Codex pet workflow, a non-pixel custom pet style, a prospect or company mascot pet, or a full 8x9 animated pet atlas with transparent unused cells, QA contact sheets, and pet.json packaging. This skill composes the installed $imagegen system skill for visual generation and uses bundled scripts for deterministic spritesheet assembly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3687,3690,3691,3694],{"name":3688,"slug":3689,"type":15},"Animation","animation",{"name":3593,"slug":3594,"type":15},{"name":3692,"slug":3693,"type":15},"Creative","creative",{"name":3418,"slug":3419,"type":15},"2026-05-02T05:31:48.48485",{"slug":3697,"name":3697,"fn":3698,"description":3699,"org":3700,"tags":3701,"stars":3565,"repoUrl":3566,"updatedAt":3711},"imagegen","generate and edit raster images","Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output should be a bitmap asset rather than repo-native code or vector. Do not use when the task is better handled by editing existing SVG\u002Fvector\u002Fcode-native assets, extending an established icon or logo system, or building the visual directly in HTML\u002FCSS\u002Fcanvas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3702,3703,3704,3707,3710],{"name":3692,"slug":3693,"type":15},{"name":3418,"slug":3419,"type":15},{"name":3705,"slug":3706,"type":15},"Image Generation","image-generation",{"name":3708,"slug":3709,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]