Skip to main content
Glama

Get supersession history

decision_log_get_supersession_history
Read-onlyIdempotent

Retrieve the complete visible Decision supersession chain in oldest-to-newest order. Malformed chains fail closed and never claim a current Decision.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
decisionIdYesDecision identifier from any point in the chain.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds valuable behavioral detail beyond these: 'Malformed chains fail closed and never claim a current Decision,' which informs error handling. This is a meaningful addition without contradicting annotations.

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?

Two sentences with zero waste. The first sentence gives purpose and ordering, the second gives a critical behavior. Information density is high and front-loaded.

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?

The tool has an output schema (though not shown here), so return value details are covered. The description explains the ordering and failure behavior, which are the key contextual elements. The term 'visible' is slightly ambiguous but not critical; overall it is complete for a read-only retrieval tool.

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?

The input schema has 100% coverage—the parameter description ('Decision identifier from any point in the chain') is already specific. The tool description adds no additional parameter semantics, so it contributes zero beyond the schema. The baseline of 3 applies since the schema does the heavy lifting.

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 ('Retrieve') and a precise resource ('complete visible Decision supersession chain') with additional ordering context. It clearly distinguishes from siblings like decision_log_get_decision (single) and decision_log_get_current_decision (current only) by emphasizing the full chain.

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 description conveys clear context: it is for retrieving the entire supersession chain in chronological order. While it doesn't explicitly name alternatives or conditions to avoid, the purpose is unambiguous and an agent can infer when to use it. Lacks explicit exclusion criteria but provides enough context.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

B3.3/5.0
Disambiguation5/5

Every tool has a clearly distinct purpose: data retrieval, listing with specific filters, lifecycle actions (create, approve, supersede), rendering for UI, and audit/governance. Even similar list tools are differentiated by filtering criteria (domain, tag, recent, search). No ambiguity between tools.

Naming Consistency5/5

All 30 tools follow a strict `decision_log_` prefix followed by a consistent verb_noun pattern (e.g., get_candidate, list_sources, create_decision, render_decision). Compound verbs like convert_candidate_to_supersession are also clear and consistent. No mixed conventions or vague verbs.

Tool Count2/5

With 30 tools, the surface is extensive and exceeds the 25+ threshold for 'too many'. While the domain is complex, many tools could be consolidated (e.g., multiple list_decisions_* variants, several render_* utilities). The count feels heavy and may overwhelm agents.

Completeness4/5

The tool set covers the full lifecycle: candidates can be created, reviewed, approved/rejected, converted or superseded; decisions can be retrieved, listed, searched, locked, and traced via provenance and audit. Minor gaps exist (e.g., no explicit update for candidates or sources beyond submission), but core workflows are complete.

Resources