Skip to content
Dashboard

Vercel Connect adds 100+ preset connectors

Vercel Connect is generally available as of August 25, 2026. Read the launch blog post, changelog, and complete guide for more information.

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

Preset 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.

Copy link to headingAdd a connector

Select a preset from the connectors directory 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:

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

Use the Vercel CLI to add the Shopify connector

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

Copy link to headingRequest tokens

After attaching a preset connector, request 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:

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 }
}
}`,
}),
});

Update a product in your Shopify store with the Vercel Connect credential

To get started, browse the preset connectors or learn more in the documentation.

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

Contributors