← Back
Vercel
Vercel CLI adds agent-optimized commands for Marketplace integrations
Vercel · featuresdkapiintegrationplatform · vercel.com ↗

New Agent-Optimized CLI Commands

Vercel has introduced two new CLI commands designed to enable AI agents to autonomously manage Marketplace integrations:

  • discover: Allows agents to explore available integrations with JSON output for programmatic parsing
  • guide: Retrieves setup documentation and code snippets in agent-friendly markdown format

Key Features

Non-interactive JSON output enables end-to-end infrastructure automation. Developers can use the --format=json flag to automate infrastructure provisioning, write custom scripts, and manage CI/CD pipelines without manual intervention.

Autonomous workflow support allows agents to:

  • Discover available integrations (databases, auth, logging, etc.)
  • Install integrations with required metadata fields using the add command
  • Fetch and parse setup instructions
  • Configure projects end-to-end in a single workflow

Hybrid human-in-the-loop workflows let agents prompt developers for approval on critical decisions like terms of service acceptance, combining autonomous setup with necessary human oversight.

Getting Started

Update to the latest Vercel CLI version and use the commands:

vercel integration discover --format=json
vercel integration add neon --format=json
vercel integration guide neon

For integrations requiring metadata, use the help command to determine inputs:

vercel integration add upstash/upstash-redis --help
vercel integration add upstash/upstash-redis -m primaryRegion=iad1 --format=json

These commands are continuously tested against agent evaluations to ensure reliable autonomous behavior. See the Vercel integration documentation for complete details.