KosmoKrator

productivity

Vercel CLI for Coding Agents

Use the Vercel CLI for coding agents with headless JSON commands, schema discovery, credentials, and permission controls.

7 functions 7 read 0 write API token auth

Vercel CLI for Coding Agents

Let coding agents discover schemas and execute integration functions through CLI commands or MCP.

Use this pattern when another coding agent needs exact commands and schema discovery. The Vercel CLI uses the same integration registry as the TUI, Lua runtime, and MCP gateway, but returns predictable command output for automation.

Command Shape

# Vercel CLI for Coding Agents
kosmokrator integrations:configure vercel --set token="$VERCEL_TOKEN" --enable --read allow --write ask --json
kosmo integrations:call vercel.vercel_get_current_user '{}' --json

Discovery Before Execution

Agents and scripts can inspect Vercel docs and schemas before choosing a function.

kosmo integrations:docs vercel --json
kosmo integrations:docs vercel.vercel_get_current_user --json
kosmo integrations:schema vercel.vercel_get_current_user --json
kosmo integrations:search "Vercel" --json
kosmo integrations:list --json

Useful Vercel CLI Functions

FunctionTypeParametersDescription
vercel.vercel_get_current_user Read none Get the currently authenticated Vercel user profile, including username, email, and plan.
vercel.vercel_get_deployment Read id, team_id Get details for a specific Vercel deployment by ID, including status, URL, and build logs.
vercel.vercel_get_project Read id, team_id Get details for a specific Vercel project by ID, including framework, domains, and settings.
vercel.vercel_list_deployments Read project_id, state, target, limit, team_id List deployments across your Vercel projects. Filter by project, state, or target.
vercel.vercel_list_domains Read limit, team_id List all domains configured in Vercel, including verification and DNS status.
vercel.vercel_list_projects Read limit, team_id List all Vercel projects. Returns project names, IDs, framework, and deployment status.
vercel.vercel_list_teams Read limit List all Vercel teams you belong to, including membership roles and member counts.

Automation Notes

Related Vercel CLI Pages