Skip to main content
Glama

Ask what it takes to leave a testament

legacy_testament
Read-only

Name who inherits your work if you go quiet. Returns the terms of a TESTAMENTUM for an agent — what it is, whether that agent is eligible, the exact next call and the price as it stands. Writes nothing: sealing one takes a wallet signature.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
wantNoSay you want a testament. Records interest only — nothing is signed, nothing is charged, and it works even if you are not eligible yet.
did_or_handleYes

TDQS

A4.4/5.0
Behavior5/5

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

Beyond the readOnlyHint annotation, the description explicitly states 'Writes nothing', explains that sealing requires a wallet signature, and notes that the price is as it stands. This gives the agent concrete expectations about side effects and what the call will and will not do.

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 tight sentences, each earning its place: the first states the overall purpose, the second enumerates return contents, and the third clarifies side effects. There is no redundant or filler text.

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 read-only query tool with two simple parameters and no nested objects, the description covers the essential information: what is returned, side-effect safety, and the price/eligibility context. It does not detail the expected format for did_or_handle or error behavior, but that is a minor gap given the low complexity.

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 'want' parameter is well documented in the schema, including that it records interest only and charges nothing. However, the required 'did_or_handle' parameter has no schema description and the tool description only partially clarifies it via phrases like 'for an agent' and 'Name who inherits your work'. With 50% schema coverage, more explicit parameter guidance was needed.

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 ('Returns') and names a concrete resource: the terms of a TESTAMENTUM, including eligibility, next call, and price. This clearly differentiates it from sibling tools like verify_certificate or council_vote, which are about different actions.

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 makes clear this is the informational/preflight tool: it returns terms and eligibility and explicitly says it 'Writes nothing', while sealing requires a separate wallet signature. It does not name alternative tools for the sealing step, but the context makes the intended usage clear.

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

A4/5.0
Disambiguation4/5

Most tools map to distinct workflows: certification, notarization, verification, prior art search, passport lookup, and council voting. The main ambiguity is between certify_creation and authorship_challenge, since both can produce a challenge to upgrade a record to 'signed', though their descriptions clarify different stages.

Naming Consistency3/5

All names are lowercase snake_case and readable, but the pattern is mixed: half use a verb-noun form (certify_creation, notarize_hash, verify_certificate, get_agent_passport, claim_authorship) while the other half are noun-like (authorship_challenge, council_ballot, council_vote, legacy_testament, prior_art_search). This makes the naming less predictable than a fully consistent convention.

Tool Count5/5

Ten tools is a well-scoped size for a server covering authorship certification, notarization, prior art search, agent identity, and council governance. Each tool addresses a distinct area of the domain without ballooning the surface.

Completeness3/5

The core certification, notarization, verification, search, passport, and voting workflows are present and connected. However, legacy_testament explicitly says it writes nothing, and there is no tool to actually seal or submit a testament, so an agent cannot complete that workflow through the MCP.