Skip to content
Dashboard
← All connectors
Other

OAuth

Connect apps and agents to any OAuth or OIDC provider without rebuilding credential management.

Create Connector
  1. Install the skill

    $ npx skills add vercel/vercel-plugin --skill vercel-connect
  2. Connect to OAuth

    $ vercel connect create your-service.com --name my-app
  3. Use its data in agents(opens in new tab) and apps(opens in new tab)

    import { getToken } from '@vercel/connect';
    const userId = 'user_123';
    const token = await getToken('oauth/my-app', {
    subject: { type: 'user', id: userId },
    });

Use OAuth in apps and agents

Add an OAuth or OIDC provider, authorize access, and request credentials from server-side code at runtime. Vercel Connect centralizes token storage and retrieval so access tokens stay out of prompts, source code, and client-side bundles.

Why use Vercel Connect with OAuth?

  • Credentials on demand

    Request OAuth credentials only when your application or agent needs them instead of copying secrets into application code.

  • Access for the right subject

    Request user-authorized OAuth access so actions follow the identity and permissions of the person using your application.

  • Managed authorization lifecycle

    Centralize OAuth authorization and token exchange rather than rebuilding the provider flow in every application.

  • Vercel-native controls

    Bind connections to the projects and environments that need them while Vercel OIDC authenticates each runtime request.

Use OAuth with your stack

Follow a complete setup for the Connect SDK or a supported agent framework.

Add OAuth to an existing Vercel application with the Connect SDK.

  1. Install the Connect SDK

    npm install @vercel/connect
  2. Create the OAuth connector

    Run these commands from the project that will use the connection.

    vercel link
    vercel connect create your-service.com --name my-app
    vercel env pull
  3. Request OAuth credentials

    app/api/route.ts
    import { getToken } from '@vercel/connect';
    const userId = 'user_123';
    const token = await getToken('oauth/my-app', {
    subject: { type: 'user', id: userId },
    });
Browse all connectors