Skip to main content
Glama

kiwi_get_test_case_history

Retrieve the complete change history for a test case by providing its ID. Track modifications and identify who changed what.

Instructions

Return the change history for a test case.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
case_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.8/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It only says 'Return the change history,' offering no detail about pagination, ordering, what changes are included, or whether any constraints apply to retrieving history.

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

Conciseness4/5

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

The description is a single clear sentence with no filler or redundant content. It is concise and front-loaded, though it is also minimal enough that some depth is sacrificed.

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

Completeness3/5

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

For a simple single-parameter getter, the description is minimally viable: the agent knows what resource is targeted and what action is performed. However, with no annotations, no output schema, and no detail about history content or ordering, the description leaves ambiguity about what the agent will actually receive.

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

Parameters2/5

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

Schema description coverage is 0%, and the description does not explain the case_id parameter beyond implying it identifies a test case. It does not mention where the ID comes from, whether it must be an existing case, or any format expectations beyond the schema's integer type.

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

Purpose4/5

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

The description clearly states the action ('Return') and the resource ('change history for a test case'). It does not explicitly distinguish itself from sibling tools like kiwi_get_test_case or kiwi_get_execution_history, but the resource is specific enough to be understandable.

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 gives no guidance about when to use this tool versus alternatives. There is no mention of when to prefer this over kiwi_get_test_case or kiwi_get_execution_history, and no context about typical use cases.

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