Vercel Connect now supports CLI setup for 100+ connectors
Mirrored from Vercel — AI for archival readability. Support the source by reading on the original site.


You can now integrate 100+ services through Vercel Connect from the CLI. Previously, vercel connect create completed setup in the terminal for some services, and opened the dashboard for everything else.
Pass the service name to create a connector, then attach it to your project:
vercel connect create shopify --name acme-shopvercel connect attach shopify/acme-shop --project my-app --environment productionUse the Vercel CLI to add the Shopify connector
The CLI pre-populates the brand name, icon, auth type, and MCP or discovery URL, then prompts for any credentials the service requires and creates the connector.
After attaching the connector, call getToken with its UID (service/name) to request a short-lived, scoped token from the provider:
import { getToken } from '@vercel/connect';
const token = await getToken('shopify/acme-shop', { subject: { type: 'app' }, scopes: ['write_products'],Update a product in your Shopify store with the Vercel Connect credential
Get started by browsing the connectors directory, or read the CLI reference.
Vercel Connect is in beta and available on all plans. Features and behavior, including available connectors and trigger forwarding, may change before general availability. Usage is subject to the Beta Agreement and Vercel Connect terms.
Discussion (0)
Sign in to join the discussion. Free account, 30 seconds — email code or GitHub.
Sign in →No comments yet. Sign in and be the first to say something.