L
Linear
community
search
Allows LLM to interact with Linear's API for project management, including searching, creating, and updating issues.
Linear MCP Server
A Model Context Protocol server for the Linear API.
This server provides integration with Linear's issue tracking system through MCP, allowing LLMs to interact with Linear issues.
Installation
Automatic Installation
To install the Linear MCP server for Claude Desktop automatically via Smithery:
npx @smithery/cli install linear-mcp-server --client claude
Manual Installation
-
Create or get a Linear API key for your team: https://linear.app/YOUR-TEAM/settings/api
-
Add server config to Claude Desktop:
- MacOS:
~/Library/Application Support/Claude/claude_desktop_config.json
- MacOS:
{ "mcpServers": { "linear": { "command": "npx", "args": [ "-y", "linear-mcp-server" ], "env": { "LINEAR_API_KEY": "your_linear_api_key_here" } } } }
Components
Tools
-
: Create a new Linear issueslinear_create_issue
- Required inputs:
(string): Issue titletitle
(string): Team ID to create issue inteamId
- Optional inputs:
(string): Issue description (markdown supported)description
(number, 0-4): Priority level (1=urgent, 4=low)priority
(string): Initial status namestatus
- Required inputs:
-
: Update existing issueslinear_update_issue
- Required inputs:
(string): Issue ID to updateid
- Optional inputs:
(string): New titletitle
(string): New descriptiondescription
(number, 0-4): New prioritypriority
(string): New status namestatus
- Required inputs:
-
: Search issues with flexible filteringlinear_search_issues
- Optional inputs:
(string): Text to search in title/descriptionquery
(string): Filter by teamteamId
(string): Filter by statusstatus
(string): Filter by assigneeassigneeId
(string[]): Filter by labelslabels
(number): Filter by prioritypriority
(number, default: 10): Max resultslimit
- Optional inputs:
-
: Get issues assigned to a userlinear_get_user_issues
- Optional inputs:
(string): User ID (omit for authenticated user)userId
(boolean): Include archived issuesincludeArchived
(number, default: 50): Max resultslimit
- Optional inputs:
-
: Add comments to issueslinear_add_comment
- Required inputs:
(string): Issue ID to comment onissueId
(string): Comment text (markdown supported)body
- Optional inputs:
(string): Custom usernamecreateAsUser
(string): Custom avatar URLdisplayIconUrl
- Required inputs:
Resources
- View individual issue detailslinear-issue:///{issueId}
- View team issueslinear-team:///{teamId}/issues
- View user's assigned issueslinear-user:///{userId}/assigned
- View organization infolinear-organization:
- View current user contextlinear-viewer:
Usage examples
Some example prompts you can use with Claude Desktop to interact with Linear:
-
"Show me all my high-priority issues" → execute the
tool and/orsearch_issues
to find issues assigned to you with priority 1linear-user:///{userId}/assigned
-
"Based on what I've told you about this bug already, make a bug report for the authentication system" → use
to create a new high-priority issue with appropriate details and status trackingcreate_issue
-
"Find all in progress frontend tasks" → use
to locate frontend-related issues with in progress tasksearch_issues
-
"Give me a summary of recent updates on the issues for mobile app development" → use
to identify the relevant issue(s), thensearch_issues
fetch the issue details and show recent activity and commentslinear-issue:///{issueId}
-
"What's the current workload for the mobile team?" → combine
andlinear-team:///{teamId}/issues
to analyze issue distribution and priorities across the mobile teamsearch_issues
Development
- Install dependencies:
npm install
- Configure Linear API key in
:.env
LINEAR_API_KEY=your_api_key_here
- Build the server:
npm run build
For development with auto-rebuild:
npm run watch
License
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
Related Servers
Aiven
official
Navigate your [Aiven projects](https://go.aiven.io/mcp-server) and interact with the PostgreSQL®, Apache Kafka®, ClickHouse® and OpenSearch® services
View DetailsApify
official
[Actors MCP Server](https://apify.com/apify/actors-mcp-server): Use 3,000+ pre-built cloud tools to extract data from websites, e-commerce, social media, search engines, maps, and more
View Details