# Vercel Connect now supports CLI setup for 100\+ connectors

**Published:** August 11, 2026 | **Authors:** Bhrigu Srivastava | **Contributors:** Hedi Zandi, Dima Voytenko, Ben Sabic

---

> **Note:** Vercel Connect is generally available as of August 25, 2026. Read the [launch blog post](https://vercel.com/blog/the-end-of-credential-sprawl-for-agents), [changelog](https://vercel.com/changelog/vercel-connect-ga), and [complete guide](https://vercel.com/kb/guide/vercel-connect) for more information.

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:

```typescript
vercel connect create shopify --name acme-shop
vercel connect attach shopify/acme-shop --project my-app --environment production
```

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:

```typescript
import { getToken } from '@vercel/connect';

const token = await getToken('shopify/acme-shop', {
  subject: { type: 'app' },
  scopes: ['write_products'],
});

await fetch(`https://acme.myshopify.com/admin/api/2026-01/graphql.json`, {
  method: 'POST',
  headers: {
    'X-Shopify-Access-Token': token,
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    query: `mutation {
      productUpdate(product: { id: "gid://shopify/Product/123", title: "Restocked: Acme Mug" }) {
        product { id }
      }
    }`,
  }),
});
```

Get started by browsing the [connectors directory](https://vercel.com/d?to=%2F%5Bteam%5D%2F~%2Fconnect%2Fbrowse), or read the [CLI reference](https://vercel.com/docs/cli/connect).

**Build a software factory with Vercel Connect**
Ship a software factory with GitHub and Linear connectors provisioned for you from the first deployment.
[Deploy now](https://vercel.fyi/eve-software-factory)

---

📚 **More updates:** [View all changelog entries](/changelog/sitemap.md) | [Blog](/blog/sitemap.md)