The Linear Project Management MCP Server is a Model Context Protocol (MCP) server implementation that enables AI assistants to interact with the Linear project management system through natural language. It allows users to retrieve, create, and update issues, projects, and teams seamlessly.
Once connected, you can use prompts like:
- "Show me all my Linear issues"
- "Create a new issue titled 'Fix login bug' in the Frontend team"
- "Change the status of issue FE-123 to 'In Progress'"
- "Assign issue BE-456 to John Smith"
- "Add a comment to issue UI-789: 'This needs to be fixed by Friday'"
MCP Linear Integration
)shell
npx -y @smithery/cli install @tacticlaunch/mcp-linear --client cursor
shell
npx -y @smithery/cli install @tacticlaunch/mcp-linear --client claude
Add the following to your MCP settings file:
{
"mcpServers": {
"linear": {
"command": "npx",
"args": ["-y", "@tacticlaunch/mcp-linear"],
"env": {
"LINEAR_API_TOKEN": "<YOUR_TOKEN>"
}
}
}
}
~/.cursor/mcp.json
~/Library/Application Support/Claude/claude_desktop_config.json
~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
~/.config/gomcp/config.yaml
# Install globally
npm install -g @tacticlaunch/mcp-linear
# Or clone and install locally
git clone https://github.com/tacticlaunch/mcp-linear.git
cd mcp-linear
npm install
npm link # Makes the package available globally
Run the server with your Linear API token:
mcp-linear --token YOUR_LINEAR_API_TOKEN
Or set the token in your environment and run without arguments:
export LINEAR_API_TOKEN=YOUR_LINEAR_API_TOKEN
mcp-linear
See TOOLS.md for a complete list of available tools and planned features.
See DEVELOPMENT.md for more information on how to develop locally.
This project is licensed under the MIT License - see the LICENSE file for details.
MCP server that enables AI assistants to interact with Linear project management system through natural language, allowing users to retrieve, create, and update issues, projects, and teams.