Skip to main content
Prerequisites Before you begin, create an account and get your API Key.

Getting started

Connect to Linear to manage issues, projects, teams, and automate project management workflows through AI agents.
  • API
  • UI
  • Open Source
1

Install the SDKs (optional)

pip install klavis
2

Create a Strata MCP Server with Linear

from klavis import Klavis
from klavis.types import McpServerName

klavis_client = Klavis(api_key="YOUR_API_KEY")

response = klavis_client.mcp_server.create_strata_server(
    servers=[McpServerName.LINEAR],
    user_id="user123"
)

API Reference

Full Strata API endpoints
3

Authenticate

import webbrowser

# Open OAuth authorization page
webbrowser.open(response.oauth_urls[McpServerName.LINEAR])
🎉 Your Linear MCP Server is ready! Once authentication is complete, you can use your MCP server URL with any MCP-compatible client.

Available Tools

Tool NameDescription
linear_get_teamsGet all teams in the Linear workspace including workflow states and team members
linear_get_issuesGet issues, optionally filtered by team
linear_get_issue_by_idGet a specific issue by its ID
linear_create_issueCreate a new issue in Linear
linear_update_issueUpdate an existing issue in Linear
linear_get_projectsGet projects, optionally filtered by team
linear_create_projectCreate a new project in Linear
linear_update_projectUpdate an existing project in Linear
linear_get_commentsGet comments for a specific issue
linear_create_commentCreate a comment on an issue
linear_update_commentUpdate an existing comment
linear_search_issuesSearch for issues by text query
For more details about tool input schema, use the get_tools API.

Next Steps

I