Linear MCP Server
Integrates with Linear's GraphQL API to provide access to Linear's data model and functionality for issue tracking and project management.
Enables interaction with Linear's issue tracking system, allowing creation, updating, and searching of issues, adding comments, and viewing issue details across teams and users.
Supports markdown formatting in issue descriptions and comments when creating or updating Linear issues.
Click on "Install 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 MCP Servershow me all my high-priority 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 MCP Server
IMPORTANT NOTE: This MCP Server is now deprecated and is no longer being maintained. I recommend you use the official Linear remote MCP server here: https://linear.app/changelog/2025-05-01-mcp (https://mcp.linear.app/sse)
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 claudeManual 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
{
"mcpServers": {
"linear": {
"command": "npx",
"args": [
"-y",
"linear-mcp-server"
],
"env": {
"LINEAR_API_KEY": "your_linear_api_key_here"
}
}
}
}Related MCP server: MCP Linear App
Components
Tools
linear_create_issue: Create a new Linear issuesRequired inputs:
title(string): Issue titleteamId(string): Team ID to create issue in
Optional inputs:
description(string): Issue description (markdown supported)priority(number, 0-4): Priority level (1=urgent, 4=low)status(string): Initial status name
linear_update_issue: Update existing issuesRequired inputs:
id(string): Issue ID to update
Optional inputs:
title(string): New titledescription(string): New descriptionpriority(number, 0-4): New prioritystatus(string): New status name
linear_search_issues: Search issues with flexible filteringOptional inputs:
query(string): Text to search in title/descriptionteamId(string): Filter by teamstatus(string): Filter by statusassigneeId(string): Filter by assigneelabels(string[]): Filter by labelspriority(number): Filter by prioritylimit(number, default: 10): Max results
linear_get_user_issues: Get issues assigned to a userOptional inputs:
userId(string): User ID (omit for authenticated user)includeArchived(boolean): Include archived issueslimit(number, default: 50): Max results
linear_add_comment: Add comments to issuesRequired inputs:
issueId(string): Issue ID to comment onbody(string): Comment text (markdown supported)
Optional inputs:
createAsUser(string): Custom usernamedisplayIconUrl(string): Custom avatar URL
Resources
linear-issue:///{issueId}- View individual issue detailslinear-team:///{teamId}/issues- View team issueslinear-user:///{userId}/assigned- View user's assigned issueslinear-organization:- View organization infolinear-viewer:- View current user context
Usage examples
Some example prompts you can use with Claude Desktop to interact with Linear:
"Show me all my high-priority issues" → execute the
search_issuestool and/orlinear-user:///{userId}/assignedto find issues assigned to you with priority 1"Based on what I've told you about this bug already, make a bug report for the authentication system" → use
create_issueto create a new high-priority issue with appropriate details and status tracking"Find all in progress frontend tasks" → use
search_issuesto locate frontend-related issues with in progress task"Give me a summary of recent updates on the issues for mobile app development" → use
search_issuesto identify the relevant issue(s), thenlinear-issue:///{issueId}fetch the issue details and show recent activity and comments"What's the current workload for the mobile team?" → combine
linear-team:///{teamId}/issuesandsearch_issuesto analyze issue distribution and priorities across the mobile team
Development
Install dependencies:
npm installConfigure Linear API key in
.env:
LINEAR_API_KEY=your_api_key_hereBuild the server:
npm run buildFor development with auto-rebuild:
npm run watchLicense
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.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityCmaintenanceA Model Context Protocol server that integrates with Linear, enabling AI assistants to create, update, search, and comment on issues for project management and issue tracking.Last updated56Apache 2.0
- FlicenseBqualityDmaintenanceA server that enables AI assistants to interact with Linear's project management tools through the Model Context Protocol, supporting features like searching, creating, and updating issues, adding comments, and retrieving user profiles and team information.Last updated91
- Alicense-qualityDmaintenanceA Model Context Protocol server implementation that enables AI assistants to interact with Linear project management systems, allowing them to create, retrieve, and modify data related to issues, projects, teams, and users.Last updated243MIT
- AlicenseAqualityCmaintenanceA Model Context Protocol server that enables large language models to interact with Linear's issue tracking system, allowing management of issues, projects, teams, and other Linear resources.Last updated191021MIT
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
A Model Context Protocol server for Wix AI tools
A Model Context Protocol (MCP) application for automated GitHub PR analysis and issue management.…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jerhadf/linear-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server