Developer docs

Linear integration

Linear is a streamlined issue tracking and project planning tool for modern…

Updated June 2026 33 actions available

Provider
linear
Category
Other
Setup
One-click OAuth (we host the OAuth app)
Actions
33 available

Quick start

Call Linear from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Linear's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.

// In your generated app's worker handler:
const composio = composioClient(env);

const result = await composio.execute(
  "LINEAR_ACTION_NAME",
  { /* action parameters — see Actions section below */ }
);

return new Response(JSON.stringify(result), {
  headers: { "Content-Type": "application/json" }
});

Replace ACTION_NAME with one of the slugs listed in the Actions section below. The composio client handles auth + rate limits automatically — no API key is exposed to user code.

Setup

OverSkill hosts the OAuth application for Linear. End-users click Connect on the integration card in your app, complete the OAuth flow with Linear, and OverSkill stores the access token scoped to their account. No client_id / client_secret configuration needed on your side.

Supported auth schemes: OAUTH2, API_KEY.

Available actions

33 actions exposed via the Linear integration. Each maps to a callable slug — pass it to composio.execute(...) in your worker code.

Show all 33 actions
  • LINEAR_GET_CURRENT_USER
  • LINEAR_GET_CYCLES_BY_TEAM_ID
  • LINEAR_GET_ISSUE_DEFAULTS
  • LINEAR_GET_LINEAR_ISSUE
  • LINEAR_GET_LINEAR_PROJECT
  • LINEAR_LIST_ISSUE_DRAFTS
  • LINEAR_LIST_ISSUES_BY_TEAM_ID
  • LINEAR_LIST_LINEAR_CYCLES
  • LINEAR_LIST_LINEAR_ISSUES
  • LINEAR_LIST_LINEAR_LABELS
  • LINEAR_LIST_LINEAR_PROJECTS
  • LINEAR_LIST_LINEAR_STATES
  • LINEAR_LIST_LINEAR_TEAMS
  • LINEAR_LIST_LINEAR_USERS
  • LINEAR_REMOVE_ISSUE_LABEL
  • LINEAR_REMOVE_REACTION
  • LINEAR_RUN_QUERY_OR_MUTATION
  • LINEAR_SEARCH_ISSUES
  • LINEAR_UPDATE_ISSUE
  • LINEAR_UPDATE_LINEAR_COMMENT
  • LINEAR_UPDATE_LINEAR_PROJECT

Build with Linear

Open OverSkill, describe what you want to build, and reference Linear in your prompt — the AI will wire up the integration automatically.