Skip to main content
Glama
arucil
by arucil

Update a Linear issue

linear_update_issue

Update any mutable field on a Linear issue, including state, assignee, labels, priority, project, cycle, due date, estimate, or parent. Supports reparenting and moving issues between projects or cycles by ID or name.

Instructions

Update any mutable issue field, including parentId (move/reparent), state, assignee, labels, priority, project, cycle, due date and estimate.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesIssue UUID or identifier
titleNo
cycleIdNo
dueDateNo
stateIdNoWorkflow state UUID, or a state name if the issue's team resolves
estimateNo
labelIdsNo
parentIdNo
priorityNo0 none, 1 urgent, 2 high, 3 medium, 4 low
projectIdNo
assigneeIdNoAssignee UUID, or 'me'
descriptionNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.2/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full behavioral disclosure burden. It mentions that parentId moves/reparents the issue, but it does not disclose other side effects like state transitions triggering workflows, whether updates are partial or full, permission requirements, or reversibility.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence that states the core purpose and enumerates the key fields without filler. Every phrase adds useful information and no redundant wording is present.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 12 parameters, no annotations, and no output schema, the description is too sparse. It does not explain the return value, error behavior, whether labelIds replaces or appends, or whether changes are atomic, which an agent needs for correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is only 33%, so the description must compensate for undocumented parameters. It adds high-level meaning by grouping fields (e.g., state, assignee, labels, cycle) and clarifying parentId as reparenting, but it does not provide formats, allowed values, or dependency relationships beyond what the schema already gives.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb and resource ('Update a Linear issue') and lists the exact mutable fields, including subtle ones like parentId for reparenting. It clearly distinguishes this tool from siblings like linear_create_issue, linear_get_issue, linear_archive_issue, and linear_delete_issue.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies this is the tool for modifying an existing issue, but it gives no explicit when-to-use guidance or alternatives. It does not clarify when to prefer create_issue, delete_issue, or archive_issue, and it doesn't state prerequisites such as the issue needing to exist.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.