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.
Get all teams with their states and labels.
Search for issues with filtering and pagination. Parameters: query (optional string), teamIds (optional array), first (optional integer, default: 50).
Get all cycles for a team. Parameters: teamId (required string).
Get all projects. Parameters: teamId (optional string), first (optional integer, default: 50).
Create a new issue. Parameters: teamId (required string), title (required string), description (optional string), assigneeId (optional string), stateId (optional string), priority (optional integer, 0-4), estimate (optional integer), cycleId (optional string), projectId (optional string), labelIds (optional array).
Update an existing issue. Parameters: issueId (required string), title (optional string), description (optional string), assigneeId (optional string), stateId (optional string), priority (optional integer, 0-4), estimate (optional integer), cycleId (optional string), projectId (optional string), labelIds (optional array).
No reviews yet. Be the first to review!
Sign in to join the conversation