Use Linear MCP server functions to interact with Linear issues, projects, teams, and comments. Use when: (1) Fetching issue requirements and acceptance criteria from Linear, (2) Validating PR changes against Linear issue requirements, (3) Creating or updating Linear issues and comments, (4) Checking issue status, labels, or relationships, (5) Listing issues by team, assignee, or project, or (6) Any Linear project management operation. Requires Linear MCP server configured and authenticated.
Use Linear MCP server functions to interact with Linear's project management system.
Get issue details:
mcp_Linear_get_issue({
id: "LIN-123",
includeRelations: true // get related/blocking issues
})
List issues:
mcp_Linear_list_issues({
team: "Engineering",
state: "In Progress"
})
Step 1: Extract Issue ID from PR
LIN-123, [LIN-123])Step 2: Get Issue Details
mcp_Linear_get_issue({
id: "LIN-123", // extracted from PR
includeRelations: true // to get blocking/related issues
})
Step 3: Extract Requirements
description for acceptance criterialabels for feature tagscomments for additional contextrelatedTo and blocks for dependenciesCheck if PR addresses all requirements:
mcp_Linear_get_issueAfter PR review:
mcp_Linear_update_issue to:
Post review findings to Linear:
mcp_Linear_create_comment({
issueId: "LIN-123",
body: "## PR Review Summary\n\n✅ Requirements met: ...\n⚠️ Gaps identified: ..."
})
mcp_Linear_get_issuemcp_Linear_list_issuesWhen reviewing PRs:
npx skills add lambda-curry/Linear MCP Integration下载完整 Skill 目录,包含 SKILL.md 及所有相关文件
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer