Skip to main content
Glama

linear_getIssueHistory

Read-onlyIdempotent

Retrieve the full change history for a Linear issue by its ID, including edits and status updates, to review its complete audit trail.

Instructions

Get the history of changes made to an issue

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of history events to return (default: 10)
issueIdYesID or identifier of the issue (e.g., ABC-123)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
historyNo
issueIdNo
identifierNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.4.3

TDQS

B3.4/5.0
Behavior2/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, covering the safety profile. The description adds no behavioral details beyond the purpose, such as what kind of changes are included (e.g., field changes vs. comments) or ordering of results, so it doesn't go beyond what annotations already provide.

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 with no waste. It precisely communicates the action and nothing more.

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

Completeness4/5

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

For a simple read-only tool with output schema and complete parameter descriptions, the description is adequate. It could mention the nature of the 'changes' (e.g., whether it includes comments or only field updates), but the output schema likely covers the return structure, so nothing critical is missing.

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 description coverage is 100%, with both parameters fully documented. The description adds no additional parameter meaning beyond the schema, so the baseline score of 3 applies.

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 states a specific verb 'Get' and resource 'history of changes made to an issue', making the tool's purpose unambiguous and easily distinguishable from siblings like linear_getComments or linear_getDocumentContentHistory.

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 provides no guidance on when to use this tool versus alternatives. It doesn't mention that this is for tracking changes over time or contrast it with getting comments or document history, leaving the agent to infer usage entirely from the name and purpose.

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

Deploy Server

Other Tools