agentic-workflows-blueprint.workflow.mcp-linear-planner
Goal
Validate MCP prerequisites and produce a deterministic execution plan for Linear operations.
Scope
- Applies to: preparing any Linear MCP integration run.
- Does not cover: executing create/update actions in Linear.
Triggers
- "Plan Linear sync via MCP"
- "Prepare MCP workflow for Linear"
- "Validate Linear MCP readiness"
Inputs
mcpServer(default:user-Linear)intent(create project items, update statuses, organize milestones)projectContext(optional ids/names already known)baseBranch(optional, for linking implementation scope)changeWindow(optional): allowed execution window for external-state writesriskClass(optional): risk tag to drive stricter preflight behaviorrollbackTicket(optional): external rollback/change reference
Invariants
- Always inspect tool schema/descriptor before calling any MCP tool.
- If server exposes
mcp_auth, run auth before operational calls when needed. - Keep parameter names aligned with tool schema (no guessed fields).
- Produce a written action plan before mutating external state.
- If
riskClassishigh, include explicit hold point for operator approval before execution.
Procedure
- List/inspect available Linear MCP tools and required arguments.
- Verify auth readiness; if blocked, route to auth and retry.
- Resolve target team/project context (or mark as required input).
- Build an operation plan:
- ordered tool calls;
- payload shape per call;
- idempotency/safety notes;
- operational metadata mapping (
changeWindow,riskClass,rollbackTicket) when provided.
- Emit a plan artifact to be consumed by
mcp-linear-sync.
Outputs
linearMcpPlanwith ordered steps and payload schemas.preflightChecklist(tools,auth,context) marked pass/fail.blockingItemslist when execution cannot continue.
Review gate
- Tool schema was explicitly checked before planned calls.
- Auth path is defined (or confirmed not required).
- Plan has deterministic call order and parameter mapping.
- High-risk plans include explicit human approval hold point.
References
../../SKILL.md../mcp-linear-sync/SKILL.md- Interactive HTML View