linear-mcp
Provides read-only tools for interacting with Linear, including listing teams, cycles, issues in a cycle, getting issue details, and searching 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-mcplist issues in the current cycle"
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
A small, read-only Model Context Protocol server for Linear. Bring your own Linear API key.
Written because none of the existing community Linear MCP servers were maintainers I wanted to trust with a personal API key, and because the surface I actually needed (list issues in a cycle, get an issue, search) is small enough to own outright.
What it exposes
Five read-only tools:
Tool | Purpose |
| Enumerate teams in the workspace (key, name, UUID). |
| List cycles for a team, filterable by past / current / future. |
| Issues in a specific cycle. Accepts |
| Full details for one issue, including description, labels, and recent comments. |
| Text search across the workspace's issues, optionally scoped to a team. |
No mutation tools — this server can't create, edit, or delete anything in Linear. That's a deliberate choice; adding write tools is a separate PR.
Related MCP server: Linear Cache MCP
Install
Requires Node 20 or later.
git clone https://github.com/puneetsharma2791/linear-mcp.git
cd linear-mcp
npm install
npm run buildThat produces dist/index.js, which is the executable the MCP host will run.
Get a Linear API key
Click Create key, name it something like "MCP - laptop".
Copy the key — it starts with
lin_api_. You won't see it again.
The key inherits your Linear permissions, so this server will see whatever you can see in the Linear app.
Wire into Claude Code
Edit your MCP client config (for Claude Code, typically
~/.config/claude/claude_desktop_config.json or the equivalent per OS; for
Claude Code CLI check claude --help):
{
"mcpServers": {
"linear": {
"command": "node",
"args": ["/absolute/path/to/linear-mcp/dist/index.js"],
"env": {
"LINEAR_API_KEY": "lin_api_..."
}
}
}
}Restart the client. Tools will appear as linear__list_teams,
linear__get_issue, etc.
Other MCP clients
Any MCP client that speaks stdio works. Point its "server command" at
node /absolute/path/to/linear-mcp/dist/index.js and pass LINEAR_API_KEY
in the environment.
Development
cp .env.example .env # then paste your API key
npm install
npm run dev # tsc --watch — rebuilds on editSmoke-test the built server by piping an MCP handshake in on stdin:
LINEAR_API_KEY=lin_api_... node dist/index.js < /dev/null &
# The server will exit cleanly on stdin close. To exercise a tool call,
# see the MCP inspector: https://github.com/modelcontextprotocol/inspectorAdding a new tool
Each tool is one file under src/tools/ with three exports:
a schema (
{name, description, inputSchema}) — declared to the MCP clienta zod parser — validates arguments at call time
an async handler — runs the query and returns a plain object
Then add one entry each to ListToolsRequestSchema and the dispatch
switch in src/index.ts. That's the whole flow.
License
MIT. See LICENSE.
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
- Alicense-qualityFmaintenanceAn MCP server for managing Linear issues, projects, teams, and milestones through the Model Context Protocol. It enables users to create, update, and list workspace resources including issue statuses, comments, and user details.29ISC
- Alicense-qualityDmaintenanceCache-first MCP server for Linear that provides tools to search, read, create, update, and comment on issues and projects, caching data locally to reduce API calls and respect rate limits.1MIT
- AlicenseBqualityFmaintenanceMCP server for accessing and managing Linear resources like issues, projects, and comments with full CRUD operations and search.21121MIT
- Alicense-qualityFmaintenanceMCP server for Linear that allows creating issues, adding comments, and listing issues and teams.94MIT
Related MCP Connectors
MCP server for interacting with the Supabase platform
Read-only MCP server for ClassQuill, a tutoring-business-management platform.
An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform
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/puneetsharma2791/linear-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server