Linear MCP Server
by Linear ยท โญ 1.1k stars ยท updated 1 months ago
Project management and issue tracking with Linear. Create issues, update tasks, manage cycles, query projects, and track team progress through your AI assistant.
83
Very Good
Quality Score Breakdown
maintenance85/100
community81/100
documentation84/100
compatibility82/100
Use Cases
- โcreate Linear issues
- โupdate task status
- โmanage projects
- โtrack team progress
โก One-Click Install Configs
Copy the config below and paste it into your AI client's config file.
๐ค Claude Desktop
~/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"
}
}
}
}โก Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"linear": {
"command": "npx",
"args": [
"-y",
"@linear/mcp-server"
],
"env": {
"LINEAR_API_KEY": "YOUR_LINEAR_API_KEY"
}
}
}
}๐ VS Code
.vscode/mcp.json
{
"mcp": {
"servers": {
"linear": {
"command": "npx",
"args": [
"-y",
"@linear/mcp-server"
],
"env": {
"LINEAR_API_KEY": "YOUR_LINEAR_API_KEY"
}
}
}
}
}