# Vercel Connect adds 90\+ preset connectors

**Published:** July 21, 2026 | **Authors:** Bhrigu Srivastava, Hedi Zandi, Raghav Agarwal, Ben Sabic | **Contributors:** Dima Voytenko, Allen Zhou, Yasoob Rasheed

---

Vercel Connect now includes preset connectors for 90+ services, including Shopify, Okta, Workday, Jira, and Sanity.

Preset [connectors](https://vercel.com/docs/connect/concepts/connectors) are predefined configurations for supported services. They reduce manual setup by pre-populating the brand name, icon, auth type, and MCP or discovery URL. Unlike managed connectors, preset connectors don't register your app with the external service for you.

## Add a connector

Select a preset from the [connectors directory](https://vercel.com/d?to=%2F%5Bteam%5D%2F~%2Fconnect%2Fbrowse) in the Vercel dashboard. Review the pre-populated configuration, add any credentials the service requires, and create the connector.

You can also start from the CLI:

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

Today, `vercel connect create` opens the dashboard to complete setup. Full CLI support for preset connectors is coming soon.

## Request tokens

After attaching a preset connector, request [tokens](https://vercel.com/docs/connect/concepts/tokens) the same way you do for any other Connect provider. Call `getToken` with the connector's UID (`service/name`) to receive a short-lived, scoped token:

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

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

await fetch(`https://${shop}.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 {
      productCreate(product: { title: "Restocked: Acme Mug" }) {
        product { id }
      }
    }`,
  }),
});
```

To get started, browse [preset connectors](https://vercel.com/d?to=%2F%5Bteam%5D%2F~%2Fconnect%2Fbrowse) or learn more in the [documentation](https://vercel.com/docs/connect/quickstart).

---

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