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 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).