Linear
Create, update, and query Linear issues from Claude. Useful for teams whose PM lives in Linear and want the agent to file tickets from conversation.
Delv Safety Grade: A
Score 84/100 · assessed 2026-04-22
Linear's official MCP server provides scoped access to their issue tracking API. The maintainer score reflects Linear as a well-established, venture-backed productivity company with professional engineering standards, though not quite the scale of big tech vendors. Permissions are reasonably scoped to Linear's API domain (creating, updating, querying issues) but do involve write operations across project management data. Supply chain is solid via npm package distribution, though the npx install pattern means dependencies aren't pre-audited. Transparency is excellent with open source code, clear documentation, and Linear's established track record. The API key requirement is standard for this use case. No known security incidents. Primary risk is the write scope: an agent can modify or create issues across your Linear workspace, so key management matters.
Lethal Trifecta (prompt-injection exposure)
TRIFECTA RISKIssue bodies and comments are user-written across any team member. Private project data exposed. Outbound via issue updates and comments. Trifecta.
Green flags
- Official vendor implementation from Linear team
- Open source with clear documentation at linear.app/docs/mcp
- Distributed via npm as @linear/mcp with standard versioning
- Well-scoped to Linear API domain, no filesystem or shell access
- Active maintenance from established productivity vendor
Red flags
- Write access spans entire Linear workspace with single API key
- No granular permission scoping within Linear (team/project level)
- API key in env gives full account access if compromised
Permissions requested
Install
npx -y @linear/mcp
{
"linear": {
"command": "npx",
"args": ["-y", "@linear/mcp"],
"env": { "LINEAR_API_KEY": "lin_api_..." }
}
}LINEAR_API_KEYReview
Install it if Linear is your team's single source of truth and you want to file or query tickets without breaking flow. Skip it if you only check Linear occasionally or if your workflow doesn't involve much back-and-forth with an AI assistant. The official vendor status means it'll stay current with Linear's API changes.
Good at
- Official vendor support means it tracks Linear's API changes without lag.
- Preserves markdown formatting when creating issues, so stack traces and code blocks stay readable.
- Query flexibility covers most triage workflows without needing to learn Linear's filter syntax.
- Genuinely saves time during debugging sessions where you want to file a ticket with full context already in the conversation.
Watch out
- No caching, so repeated queries make fresh API calls each time.
- Requires knowing team and project IDs for precise targeting in large workspaces.
- Only useful if Linear is already your primary issue tracker, setup overhead isn't justified for occasional use.
- Better suited to Claude Desktop than Cursor unless you do heavy project management from the editor.
Use cases
- "File this bug in Linear" during a debugging session
- Weekly triage sweeps
- Pulling ticket context into a code review
- Generating sprint summaries from team issues
Getting started
Works with
Similar MCPs
- AsanaOfficial Asana MCP. Access the Work Graph - tasks, projects, teams - from AI clients via OAuth. Remote server, Streamable HTTP transport, no local install needed.
- ClickUpOfficial ClickUp MCP - ~49 tools across 14 categories (tasks, docs, time tracking, chat, comments, bulk ops). The largest project-management surface area in any MCP server right now.
- NotionNotion's official MCP for reading and writing pages, databases, and comments. Best-in-class for personal-knowledge-base agents.
- Google CalendarSchedule, list, update events directly from Claude. Combine with Gmail MCP for an actual personal-assistant feel.