mcp-server-linear
An MCP server that provides tools for interacting with Linear issue tracking system, currently supporting issue search with plans to expand to issue creation, updates, comments, and project management.
floodfx
Tools
linear-search-issues
Search for issues in Linear
README
mcp-server-linear
This is a MCP server that defines tools for interacting with Linear via an MCP client.
Current Tools
linear-search-issues
: Search for issues in Linear
Future Tools
linear-create-issue
: Create an issue in Linearlinear-update-issue
: Update an issue in Linearlinear-get-issue
: Get an issue in Linearlinear-get-project-issues
: Get all issues in a project in Linearlinear-add-comment
: Add a comment to an issue in Linearlinear-create-project
: Create a project in Linearlinear-update-project
: Update a project in Linear
Future Resources
linear-issue:///{issueId}
- View individual issue detailslinear-project:///{projectId}
- View project detailslinear-cycle:///{cycleId}
- View cycle details (defaults to current cycle)linear-team:///{teamId}/issues
- View team issueslinear-user:///{userId}/assigned
- View user's assigned issueslinear-organization:
- View organization info
Bun-preferred
This project uses Bun and can be run directly from Bun without transpiling (which is how I use it). To run it with Bun, you can use the following command:
bun run index.ts
That said, you can run it with Node if you prefer. To run it with Node, you can use the following command:
node build/index.js
Standalone Executable
Bun projects can be compiled into standalone executable. This allows you to run the server without having to install Bun (theoretically). To compile the project into a standalone executable, you can use the following command:
bun build:standalone
You may need to change the build target
depending on the machine you are building for. See Bun docs for more details.
Adding to your MCP client via JSON
To add this server to your MCP client, you can use the following JSON configuration:
Bun Runtime
"linear": {
"command": "bun",
"args": [
"run",
"/path/to/linear-mcp-server/index.ts"
],
"env": {
"LINEAR_API_KEY": "lin_api_ABCD"
}
}
Node Runtime
"linear": {
"command": "node",
"args": [
"/path/to/linear-mcp-server/build/index/js"
],
"env": {
"LINEAR_API_KEY": "lin_api_ABCD"
}
}
Standalone Executable
"linear": {
"command": "/path/to/linear-mcp-server/standalone-linear-mcp-server",
"args": [],
"env": {
"LINEAR_API_KEY": "lin_api_ABCD"
}
}
Credits
This project was inspired by jerhadf/linear-mcp-server. I and others had trouble getting it to work, which prompted me to create my own implementation. The list of tools and resources seemed worth keeping.
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
MCP Package Docs Server
Facilitates LLMs to efficiently access and fetch structured documentation for packages in Go, Python, and NPM, enhancing software development with multi-language support and performance optimization.
Claude Code MCP
An implementation of Claude Code as a Model Context Protocol server that enables using Claude's software engineering capabilities (code generation, editing, reviewing, and file operations) through the standardized MCP interface.
@kazuph/mcp-taskmanager
Model Context Protocol server for Task Management. This allows Claude Desktop (or any MCP client) to manage and execute tasks in a queue-based system.
Linear MCP Server
Enables interaction with Linear's API for managing issues, teams, and projects programmatically through the Model Context Protocol.
mermaid-mcp-server
A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images.
Jira-Context-MCP
MCP server to provide Jira Tickets information to AI coding agents like Cursor

Linear MCP Server
A Model Context Protocol server that integrates with Linear's issue tracking system, allowing LLMs to create, update, search, and comment on Linear issues through natural language interactions.

Sequential Thinking MCP Server
This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.