[← All connectors](/connect/browse)

![](/static/connex/linear.svg)

Developer

# Linear

Connect agents to Linear issues, projects, cycles, and team workflows.

[Create Connector](https://vercel.com/d?to=%2F%5Bteam%5D%2F~%2Fconnect%3Fcreate%3Dlinear&title=Vercel+Connect)

1.  ## Install the skill

    ```
    $ npx skills add vercel/vercel-plugin --skill vercel-connect
    ```

2.  ## Connect to ![](/static/connex/linear.svg) Linear

    Via CLI[Vercel Dashboard(opens in new tab)](https://vercel.com/d?to=%2F%5Bteam%5D%2F~%2Fconnect%3Fcreate%3Dlinear&title=Vercel+Connect)

    ```
    $ vercel connect create linear --name acme-linear
    ```

3.  ## Use its data in [agents(opens in new tab)](https://github.com/vercel-labs/eve-slack-agent-template) and [apps(opens in new tab)](https://github.com/vercel-labs/nextjs-linear-connect-template)

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

    const token = await getToken('linear/acme-linear');
    ```

## Use Linear in apps and agents

Linear is an issue tracking and product development platform. Its API and MCP server provide access to issues, projects, cycles, comments, and teams.

[Read the Linear developer docs(opens in new tab)](https://developers.linear.app/)

## Build with Linear events

Vercel Connect delivers verified Linear events to your app or agent in real time.

- Comment
- Issue

[Learn how to configure triggers](/docs/connect/concepts/triggers)

## Why use Vercel Connect with Linear?

- ### Credentials on demand

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

- ### Access for the right subject

    Keep app-scoped Linear access behind a reusable connector controlled by your team.

- ### Managed authorization lifecycle

    Centralize Linear 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.

## What you can build with Linear

- ### Triage incoming issues

    Classify, assign, and update issues using context from your product and support systems.

- ### Keep projects current

    Summarize progress and update project or cycle state from agent workflows.

- ### Turn conversations into work

    Create and enrich issues from support, Slack, or research conversations.

## Use Linear with your stack

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

Add Linear to an existing Vercel application with the [Connect SDK](/docs/connect/ts-sdk-reference).

1.  ### Install the Connect SDK

    ```
    npm install @vercel/connect
    ```

2.  ### Create the Linear connector

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

    ```
    vercel link
    vercel connect create linear --name acme-linear
    vercel env pull
    ```

3.  ### Request Linear credentials

    app/api/route.ts

## More connectors like Linear

- [GitHub](/connect/github)
- [WorkOS](/connect/workos)
- [CircleCI](/connect/circleci)
- [Clerk](/connect/clerk)

[Browse all connectors](/connect/browse)