Linear MCP Server Extension for Zed
dvcrn
README
Linear MCP Server Extension for Zed
This extension integrates my Linear MCP Server into Zed's AI Assistant, enabling direct interaction with Linear through Zed.
Features
- ✨ Full Linear API integration through MCP
- 🔄 Create, update, and manage issues directly from Zed
- 📝 Comment management (create, update, delete, resolve)
- 📊 Project and milestone management
- 👥 Multiple workspace support
- 🔍 Advanced issue search and filtering
- 🏷️ Label management
- 📎 Parent/child issue relationships
Setup
Option 1: Developer Token
Go to Linear: Workspace Settings > API > OAuth application > Create or select an application (e.g., "Cline MCP"). Under "Developer Token", click "Create & copy token". Select "Application" as the actor and copy the generated token.
Option 2: Personal API Key
Go to Linear: Your Personal Settings > API > Personal API Keys. Click "Create key", give it a label (e.g., "Cline MCP"), and copy the generated key.
Setting up Zed
Take the key you just received and add them to your Zed settings.json, in the "context_servers" field
{
"context_servers": {
"mcp-server-linear": {
"settings": {
"linear_api_key": "<LINEAR_API_KEY>",
"tool_prefix": "<optional tool prefix>"
}
}
}
}
You can also add these keys directly into an Agent profile, for example:
{
"assistant": {
"profiles": {
"write": {
"name": "Write",
"context_servers": {
"mcp-server-linear": {
"settings": {
"linear_api_key": "<LINEAR_API_KEY>",
"tool_prefix": "company1" // optional
}
}
}
}
}
}
}
Multiple Workspace Support
If you work with multiple Linear workspaces, you can use the optional tool_prefix
setting to prefix all Linear tools. This helps distinguish between different workspaces:
{
"context_servers": {
"mcp-server-linear": {
"settings": {
"linear_api_key": "<LINEAR_API_KEY>",
"tool_prefix": "company1"
}
}
}
}
With this configuration:
- Tool names will be prefixed (e.g.,
company1_linear_create_issue
) - Makes it clear which workspace each tool is operating on
- Prevents conflicts when working with multiple Linear instances
Multiple Simultaneous Installations
You can run multiple instances of the MCP server simultaneously by configuring different command blocks with unique TOOL_PREFIX
values:
{
"context_servers": {
"mcp-server-linear": {
// provided through Zed extension
"settings": {
"linear_api_key": "<LINEAR_API_KEY>",
"tool_prefix": "company1"
}
},
"linear-workspace2": {
// provided through npx
"settings": {},
"command": {
"command": "npx",
"args": ["-y", "mcp-server-linear"],
"env": {
"LINEAR_ACCESS_TOKEN": "<LINEAR_API_KEY_2>",
"TOOL_PREFIX": "workspace2"
}
}
}
}
}
Each instance will have its tools prefixed with the specified TOOL_PREFIX
, allowing you to interact with multiple Linear workspaces simultaneously.
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.