Skip to main content
Glama

read_history

Read-only

Retrieve an entity's change history ordered oldest to newest. Use simple mode for state, effort, release, and iteration changes, or full mode for every changed field and new value.

Instructions

Change history of an entity, oldest first (when capped, the most recent entries are kept). Simple history (default) records state, effort, release and iteration changes; full: true returns every change with the changed fields and their new values. resource is resolved from the id for cards; pass it for other entities (e.g. Comment).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
fullNo
limitNoMaximum items to return (default 200, max 5000). A capped result says truncated: true.
resourceNoResource name (UserStory) or plural path (UserStories); see read_meta

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.1

TDQS

A4.8/5.0
Behavior5/5

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

Beyond the read-only/non-destructive annotations, the description discloses ordering (oldest first), cap semantics (most recent retained), default scope (state/effort/release/iteration), and full-mode behavior (changed fields and new values). This is substantial behavioral context for a tool with no output schema.

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?

Three sentences with no filler; the first sentence gives the core behavior, the second distinguishes output modes, and the third handles parameter nuance. Every clause contributes.

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

Completeness5/5

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

Despite the absence of an output schema, the description orients the agent on return content and shape: history list, oldest first, default vs full fields, and truncation behavior. Combined with the schema's limit/resource details and read-only annotations, an agent has what it needs to invoke correctly.

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

Parameters5/5

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

With only 50% schema description coverage, the description compensates by explaining full semantics, the resource/id resolution rule (cards vs other entities like Comment), and the distinction between default simple and full history. Limit's semantics are already covered in the schema, so no gap remains.

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?

Opens with the exact deliverable ('Change history of an entity') and adds ordering, cap-retention behavior, and simple vs full mode, making it unmistakable among the many read_* siblings. The phrase 'full: true returns every change' also makes the retrieval action explicit.

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

Usage Guidelines4/5

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

The use case is clear: any agent needing entity change history, with an explicit choice between lightweight history and full field-level history. It does not name sibling alternatives or state exclusions, but the purpose is unique enough that an agent can select it without ambiguity.

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