linear-issue-mcp
Integrates with Linear to create, update, search, and comment on issues, as well as access issue, team, user, and organization data.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@linear-issue-mcpShow my high-priority Linear issues"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Linear Issue MCP
An MCP (Model Context Protocol) server for Linear. Use it from Claude Desktop or any MCP client to create, search, update, and comment on Linear issues.
Requirements
Node.js 18+
A Linear API key (team settings → API)
Related MCP server: streamlinear
Setup
git clone https://github.com/aniketsharma/linear-issue-mcp.git
cd linear-issue-mcp
npm install
npm run buildCreate a .env file (or set the variable in your MCP client config):
LINEAR_API_KEY=your_api_key_hereClaude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):
{
"mcpServers": {
"linear": {
"command": "npx",
"args": ["-y", "linear-issue-mcp"],
"env": {
"LINEAR_API_KEY": "your_linear_api_key_here"
}
}
}
}For local development without publishing, point command at node and args at the built entry:
{
"mcpServers": {
"linear": {
"command": "node",
"args": ["/absolute/path/to/linear-issue-mcp/build/index.js"],
"env": {
"LINEAR_API_KEY": "your_linear_api_key_here"
}
}
}
}Tools
Tool | Purpose |
| Create an issue ( |
| Update an issue by |
| Filter by query, team, status, assignee, labels, priority |
| List issues for a user (or the authenticated user) |
| Comment on an issue (markdown supported) |
Resources
linear-issue:///{issueId}— single issuelinear-team:///{teamId}/issues— team backloglinear-user:///{userId}/assigned— assigned issues (mefor current user)linear-organization:— org, teams, memberslinear-viewer:— authenticated user context
Example prompts
“Show my high-priority Linear issues”
“Create a bug report for the auth flow and assign it to the mobile team”
“Summarize recent updates on frontend issues that are in progress”
Development
npm install
npm run build
npm run watch # rebuild on change
npm run inspectorLicense
MIT — see LICENSE.
This server cannot be deployed
Maintenance
Related MCP Connectors
MCP server for Linear project management and issue tracking
Linear MCP — wraps the Linear GraphQL API (OAuth)
Search, read and create Linear issues, projects, teams and cycles.
MCP server unifying ERPs, CRMs, APIs and knowledge base for Claude, ChatGPT and Gemini.
Related MCP Servers
- AlicenseBqualityFmaintenanceMCP server for accessing and managing Linear resources like issues, projects, and comments with full CRUD operations and search.2157 npm1MIT
- AlicenseNot gradedqualityDmaintenanceA lightweight MCP server that enables Claude to interact with Linear via a single tool with seven actions: search, get, update, comment, create, graphql, and help.446 npm89MIT
- AlicenseNot gradedqualityFmaintenanceMCP server for Linear that allows creating issues, adding comments, and listing issues and teams.5 npm4MIT
- AlicenseBqualityDmaintenanceAn MCP server that integrates with Linear's API, enabling users to manage issues, projects, teams, and comments through natural language. It supports creating, updating, deleting, and searching issues, as well as project and team management.251,397 npmMIT