Linear MCP Server
A Model Context Protocol (MCP) server for interacting with Linear. This server allows AI assistants to fetch data from Linear through the MCP standard.
Current Features
- Get a user’s todo tickets by user ID or email address
Installation
- Clone this repository
- Install dependencies:
npm install - Create a
.envfile at the root of the project (copy from.env.example):
Get your Linear API key from the Linear Developer ConsoleLINEAR_API_KEY=your_linear_api_key_here
Development
Run the development server (with hot reload):
npm run dev
Building for Production
Build the TypeScript code:
npm run build
Run the compiled code:
npm start
Using with MCP clients
This MCP server implements the standard MCP protocol and can be used with any MCP client. The server exposes the following tools:
Using with Claude Code
To use this MCP server with Claude Code, run the following command:
claude mcp add linear-mcp-server -- node dist/index.js
This registers the Linear MCP server with Claude Code, allowing you to access Linear tickets directly from your Claude conversations.
get-user-todo-tickets
Gets all tickets in the “Todo” state for a specified user.
Parameters:
userId(optional): The ID of the useremail(optional): The email of the user
Note: You must provide either userId or email.
Example response:
[
{
"id": "issue-id",
"identifier": "PROJ-123",
"title": "Fix login issue",
"url": "https://linear.app/...",
"priority": 1
},
...
]
Contributing
Contributions are welcome! Feel free to submit a pull request.
Linear Task Fetcher
Project Details
- argia-andreas/linear-mcp-server
- linear-mcp-server
- Last Updated: 2/27/2025
Recomended MCP Servers
Model Context Protocol Server with Superface tools
A list of SaaS, PaaS and IaaS offerings that have free tiers of interest to devops and infradev
A powerful flow control component enabling reliability, resilience and monitoring for microservices. (面向云原生微服务的高可用流控防护组件)
MCP server provide JijModeling Assistant Tools
Connect your Sanity content to AI agents. Create, update, and explore structured content using Claude, Cursor, and VS...
A real-time cryptocurrency data provider for Model Context Protocol servers.
MCP server for Huntress API integration
react-mcp integrates with Claude Desktop, enabling the creation and modification of React apps based on user prompts
A Model Context Protocol (MCP) server facilitating secure interactions with MSSQL databases.





