linear-mcp-server
Provides tools for project management (creating, listing, viewing details, deleting projects), issue management (creating, listing, deleting issues), and team/user management (getting team info, current user) through Linear's API.
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-mcp-serverlist my projects"
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 Server
A Model Context Protocol (MCP) server that provides seamless integration with Linear for project and issue management.
🚀 Features
Project Management
✅ Create Projects - Create new Linear projects with custom names, descriptions, priorities, and content
✅ List Projects - Get all projects in your workspace with detailed information
✅ View Project Details - Retrieve comprehensive information about specific projects
✅ Delete Projects - Remove projects from your workspace
Issue Management
✅ Create Issues - Create new issues with titles, descriptions, priorities, and project assignments
✅ List Issues - View all issues assigned to you
✅ Delete Issues - Remove issues from your workspace
✅ Auto-Assignment - Issues are automatically assigned to the current user
Team & User Management
✅ Get Team Info - View information about your Linear teams
✅ Get Current User - Display information about the authenticated user
✅ Default Team - Automatically uses your default team for operations
Related MCP server: Linear MCP Server
🛠️ Available Tools
Project Tools
create-project- Create a new Linear projectget-all-project- List all projectsview-project-detail- Get detailed project informationdelete-project- Delete a project by ID
Issue Tools
create-issue- Create a new issueget-all-issues- List all assigned issuesdelete-issue- Delete an issue by ID
Team & User Tools
get-team-info- Get team informationcurrent-user- Get current user information
📋 Prerequisites
Node.js (v16 or higher)
npm or yarn
Linear API key
🔧 Installation
Clone the repository:
git clone https://github.com/TechAIInsights/linear-mcp-server.git
cd linear-mcp-serverInstall dependencies:
npm installSet up environment variables:
# Create a .env file
echo "LINEAR_API_KEY=your_linear_api_key_here" > .envGet your Linear API key:
Go to Linear Settings > API
Generate a new API key
Add it to your
.envfile
🚀 Usage
Development Mode
npm run devProduction Build
npm run build
npm start📁 Add server config
{
"mcpServers": {
"linear-mcp": {
"command": "node",
"args": ["/absolute/path/to/repo/dist/index.js"],
"env": {
"LINEAR_API_KEY": "your_linear_api_key_here"
}
}
}
}💡 Usage Examples
Creating a Project
# Create a project with basic info
create-project "My New Project"
# Create a project with full details
create-project "Advanced Project" --description "A complex project" --priority "high" --content "Project details here"Creating an Issue
# Create a basic issue
create-issue "Fix authentication bug"
# Create an issue with priority and project
create-issue "Implement new feature" --priority 2 --projectId "proj_123"Managing Projects
# List all projects
get-all-project
# View project details
view-project-detail --id "proj_123"
# Delete a project
delete-project --id "proj_123"🔧 Configuration
Environment Variables
LINEAR_API_KEY- Your Linear API key (required)
Priority Levels
0 - No priority
1 - Urgent
2 - High
3 - Normal
4 - Low
🏗️ Architecture
The server is built with a modular architecture for maintainability:
Modular Tools - Each tool category has its own module
Standardized Responses - Consistent response format across all tools
Error Handling - Comprehensive error handling with context-aware messages
Type Safety - Full TypeScript support with proper type definitions
📚 Development Scripts
npm run build- Compile TypeScript to JavaScriptnpm run start- Run the compiled applicationnpm run dev- Run with hot reload (HMR)npm run dev:watch- Run with TypeScript compilation + nodemonnpm run watch- Watch for changes and recompile automaticallynpm run test- Run tests with Jestnpm run clean- Remove compiled output
🔗 Related
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/TechAIInsights/linear-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server