Skip to content

vercel connect

The vercel connect command is currently in beta. Features and behavior may change.

The vercel connect command manages Vercel Connect connectors. Use it to create connectors, attach them to projects, request runtime tokens, and remove them.

It supports the following subcommands:

  • create: Create a new connector
  • list: List connectors for your team or project
  • token: Get a runtime token from a connector
  • attach: Attach a project to a connector
  • detach: Detach a project from a connector
  • update: Update connector branding
  • remove: Delete a connector
  • open: Open a connector in the Vercel dashboard

Connectors are identified by their ID (for example, scl_abc123) or their UID (for example, slack/my-bot).

Creates a new connector for a service.

terminal
vercel connect create <service>
Create a new connector for the given service.

Pass a service name such as slack or github, or a service URL such as mcp.linear.app. Vercel attempts to set up the connection automatically, and opens your browser for any steps that require manual inputs.

terminal
vercel connect create slack --name acme-slack
Create a Slack connector named acme-slack.
OptionShorthandDescription
--name <NAME>-nName for the connector.
--triggersEnable webhook trigger forwarding for this connector.
--icon <PATH>Path to a PNG or JPEG image to use as the connector icon.
--background-color <HEX>Background color for the connector icon (for example, #1A2B3C).
--accent-color <HEX>Accent color for the connector icon (for example, #FF0066).
--format <FORMAT>-FSpecify the output format (json).
terminal
vercel connect create slack
vercel connect create slack --name my-bot --triggers
vercel connect create github --name acme-github
vercel connect create mcp.linear.app --name linear-connector
vercel connect create slack --name my-bot --icon ./logo.png --background-color '#1A2B3C'
vercel connect create slack --format=json

Lists connectors for your team or project, with optional filtering by type, service, or search text. Also available as vercel connect ls.

terminal
vercel connect list
List connectors linked to the current project.

By default, only connectors linked to the currently linked project are shown. Use --all-projects to list every connector in the team.

terminal
vercel connect list --all-projects
List every connector in the team regardless of project link.
OptionShorthandDescription
--all-projectsList every connector in the team, regardless of project link.
--type <TYPE>Filter by connector type (slack, github, oauth, custom). Repeatable.
--service <NAME>Filter by service name (for example, slack, mcp.linear.app). Repeatable.
--search <TEXT>Search connectors by name or UID.
--limit <COUNT>Number of connectors to return per page.
--next <CURSOR>Cursor for the next page of results.
--format <FORMAT>-FSpecify the output format (json).
terminal
vercel connect list --all-projects
vercel connect list --type slack
vercel connect list --type oauth --type github
vercel connect list --service mcp.linear.app
vercel connect list --search prod
vercel connect list --limit 10
vercel connect list --format=json

Requests a runtime token from a connector. Plain output is the raw token value, suitable for TOKEN=$(vercel connect token ...).

terminal
vercel connect token <connector>
Get a user token for the given connector.

By default the command requests a user token (acting on behalf of you). Use --subject app to request an app token using the connector's default installation.

terminal
vercel connect token slack/my-bot --subject app
Get an app token using the connector's default installation.

If authorization or installation is required and the session is interactive, the CLI opens your browser and polls for the result. Pass --yes to allow this in non-interactive contexts.

OptionShorthandDescription
--subject <TYPE>-sSubject type: user (default) or app.
--installation-id <ID>Target a specific installation. Only applies with --subject app.
--scopes <SCOPES>Scopes for the token request. Comma- or space-separated.
--yes-yAllow opening the browser automatically if authorization or installation is required.
--format <FORMAT>-FSpecify the output format (json). JSON output includes expiresAt, installationId, and other fields.
terminal
vercel connect token scl_abc123
vercel connect token slack/my-bot
vercel connect token scl_abc123 --subject app
vercel connect token scl_abc123 --subject app --installation-id inst_1
vercel connect token scl_abc123 --scopes channels:read,chat:write
vercel connect token scl_abc123 --yes
vercel connect token scl_abc123 --format=json

Attaches a Vercel project to a connector for one or more environments, so the project can request tokens from that connector at runtime.

terminal
vercel connect attach <connector>
Attach the currently linked project to a connector for all environments.
terminal
vercel connect attach scl_abc123 -e production -e preview
Attach and restrict to specific environments.

Use --triggers to also register the project as a trigger destination. When registered, the connector forwards verified incoming webhooks to the project. A connector can have up to three trigger destinations.

terminal
vercel connect attach scl_abc123 --triggers
Attach and register the project as a trigger destination.

Detaching a project (via vercel connect detach) removes the token-access link but does not remove the project from the connector's trigger destinations. Manage trigger destinations separately.

OptionShorthandDescription
--project <NAME_OR_ID>-pProject name or ID. Defaults to the currently linked project.
--environment <ENV>-eEnvironments to enable: production, preview, development. Repeatable and comma-separated. Defaults to all environments.
--triggersRegister this project as a trigger destination for incoming webhooks.
--trigger-branch <BRANCH>Git branch for the trigger destination. Defaults to production. Only valid with --triggers.
--trigger-path <PATH>Path on the project that receives forwarded webhooks. Defaults to /{service}. Only valid with --triggers.
--yes-ySkip the confirmation prompt.
--format <FORMAT>-FSpecify the output format (json).
terminal
vercel connect attach scl_abc123
vercel connect attach scl_abc123 -e production -e preview
vercel connect attach slack/my-bot --project my-app
vercel connect attach scl_abc123 --triggers
vercel connect attach scl_abc123 --triggers --trigger-branch staging --trigger-path /slack
vercel connect attach scl_abc123 --yes --format=json

Detaches a Vercel project from a connector. The project can no longer request tokens from that connector.

terminal
vercel connect detach <connector>
Detach the currently linked project from a connector.
terminal
vercel connect detach slack/my-bot --project my-app
Detach a specific project by name.
OptionShorthandDescription
--project <NAME_OR_ID>-pProject name or ID. Defaults to the currently linked project.
--yes-ySkip the confirmation prompt.
--format <FORMAT>-FSpecify the output format (json).
terminal
vercel connect detach scl_abc123
vercel connect detach slack/my-bot --project my-app
vercel connect detach scl_abc123 --yes --format=json

Updates connector branding: icon and colors.

terminal
vercel connect update <connector>
Update branding for the given connector.
OptionShorthandDescription
--icon <PATH>Path to a PNG or JPEG image to use as the connector icon.
--background-color <HEX>Background color for the connector icon (for example, #1A2B3C).
--accent-color <HEX>Accent color for the connector icon (for example, #FF0066).
--format <FORMAT>-FSpecify the output format (json).
terminal
vercel connect update scl_abc123 --icon ./logo.png
vercel connect update scl_abc123 --background-color '#1A2B3C' --accent-color '#FF0066'
vercel connect update scl_abc123 --icon ./logo.png --format=json

Deletes a connector. By default the command prompts for confirmation. Also available as vercel connect rm.

terminal
vercel connect remove <connector>
Delete a connector by ID or UID.

If the connector still has projects attached, the deletion fails unless you pass --disconnect-all to detach all projects first.

terminal
vercel connect remove scl_abc123 --disconnect-all --yes
Detach all projects from a connector and then delete it without prompting.
OptionShorthandDescription
--disconnect-all-aDisconnect all projects from the connector before deletion.
--yes-ySkip the confirmation prompt.
--format <FORMAT>-FSpecify the output format (json).
terminal
vercel connect remove scl_abc123
vercel connect remove slack/my-bot
vercel connect remove scl_abc123 --disconnect-all
vercel connect remove scl_abc123 --yes
vercel connect remove scl_abc123 --disconnect-all --yes --format=json

Opens a connector in the Vercel dashboard. With --format=json, prints the dashboard URL instead of opening a browser.

terminal
vercel connect open <connector>
Open a connector in the Vercel dashboard.
OptionShorthandDescription
--format <FORMAT>-FSpecify the output format (json).
terminal
vercel connect open scl_abc123
vercel connect open slack/my-bot
vercel connect open scl_abc123 --format=json

The following global options can be passed when using the vercel connect command:

For more information on global options and their usage, refer to the options section.

Last updated June 9, 2026

Was this helpful?