Official Linear MCP server for issue tracking
## Linear MCP Server: Issue Tracking The **Linear MCP Server** integrates Linear's modern issue tracking platform into Google Antigravity, enabling developers to manage issues, plan sprints, and track projects through AI-assisted workflows. ### Why Linear MCP? - **Speed First**: Built for keyboard-first, fast navigation - **Beautiful Design**: Clean, modern interface that developers love - **Git Integration**: Automatic issue linking with branches and PRs - **Cycles & Projects**: Plan work with cycles and track project progress - **Real-Time Sync**: Instant updates across all clients ### Key Features #### 1. Issue Management ```javascript // Create issue const issue = await linear.createIssue({ teamId: "team_123", title: "Implement OAuth2 authentication", description: "Add support for Google and GitHub OAuth providers", priority: 2, // High stateId: "state_backlog", assigneeId: "user_123", labelIds: ["label_backend", "label_security"], estimate: 8 }); // Search issues const issues = await linear.searchIssues({ filter: { team: { id: { eq: "team_123" } }, state: { name: { in: ["In Progress", "In Review"] } } }, orderBy: "priority" }); // Update issue state await linear.updateIssue({ id: issue.id, stateId: "state_in_progress" }); ``` #### 2. Cycles and Projects ```javascript // Get current cycle const cycle = await linear.getCurrentCycle({ teamId: "team_123" }); // Add issue to cycle await linear.updateIssue({ id: issue.id, cycleId: cycle.id }); // Create project const project = await linear.createProject({ teamIds: ["team_123"], name: "Q1 Authentication Overhaul", description: "Complete authentication system redesign", targetDate: "2025-03-31" }); // Get project progress const progress = await linear.getProjectProgress({ projectId: project.id }); ``` ### Configuration ```json { "mcpServers": { "linear": { "command": "npx", "args": ["-y", "@anthropic/mcp-linear"], "env": { "LINEAR_API_KEY": "your-api-key" } } } } ``` ### Use Cases **Sprint Planning**: Plan cycles with prioritized issues and estimates. **Bug Tracking**: Create and track bugs with automatic PR linking. **Project Management**: Track project progress with milestones and dependencies. The Linear MCP Server brings modern issue tracking to your development workflow.
{
"mcpServers": {
"linear": {
"mcpServers": {
"linear": {
"url": "https://mcp.linear.app/mcp",
"type": "streamable-http"
}
}
}
}
}