This MCP server implementation provides integration with Linear, a project management platform. It offers tools for managing teams, issues, projects, and cycles through Linear's API. The server enables operations like retrieving team information, searching issues, creating and updating tasks, and handling project data. It's particularly useful for AI-assisted project management workflows that require seamless interaction with Linear's features.
No reviews yet. Be the first to review!
Sign in to join the conversation
Get all teams with their states and labels.
Search for issues with filtering and pagination. Parameters: query (optional string), teamIds (optional array of strings), first (number of issues to return, default: 50).
Get all cycles for a team. Parameters: teamId (required string).
Get all projects. Parameters: teamId (optional string), first (number of projects to return, default: 50).
Create a new issue. Parameters: teamId (required string), title (required string), description (optional string), assigneeId (optional string), stateId (optional string), priority (optional number, 0-4), estimate (optional number), cycleId (optional string), projectId (optional string), labelIds (optional array of strings).
Update an existing issue. Parameters: issueId (required string), title (optional string), description (optional string), assigneeId (optional string), stateId (optional string), priority (optional number, 0-4), estimate (optional number), cycleId (optional string), projectId (optional string), labelIds (optional array of strings).