Skip to main content
Glama

Worthune Verified Financial Models

narrate_decision

Read-only

The Verified Narrative: client- or advisor-ready prose for a stored decision (decision_id) or an inline decision object. A model drafts the narrative FROM the decision; a deterministic gate then extracts every number in the draft and verifies each against the decision's own values — correctly-rounded restatements pass, invented numbers reject the draft whole (one retry, then refusal; a narrative is never patched). The response reports how many claims were checked.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
api_keyNoWorthune API key (wk_…)
audienceNoDefault "client"
decisionNoAn inline decision object (validated first)
decision_idNoA stored decision's id (from decide_household)

TDQS

A4.2/5.0
Behavior5/5

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

The description is unusually explicit: it reveals the deterministic gate, the one-retry-then-refusal behavior, that narratives are 'never patched,' and that invented numbers reject the whole draft. This goes well beyond the readOnlyHint and destructiveHint annotations and gives the agent accurate expectations about failures and guarantees.

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 dense sentences front-load the core purpose, then pack the verification behavior and output promise with no filler. Every clause adds operational value: input options, safety mechanism, retry limit, and the reported claim count.

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 tool with no output schema, the description covers inputs, validation order, retry/refusal behavior, and the fact that the response reports the number of checked claims. It stops short of specifying the full response shape or how the prose itself is returned, so a small gap remains.

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%, so the schema already documents all four parameters. The description adds a little context by distinguishing stored decisions (decision_id) from inline decision objects and noting validation, but it does not substantially extend the schema's parameter documentation.

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 opens with 'The Verified Narrative: client- or advisor-ready prose for a stored decision (decision_id) or an inline decision object,' naming a specific deliverable, source, and inputs. This clearly distinguishes it from siblings like verify_claim by framing the output as a full narrative with a verification pass.

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

Usage Guidelines3/5

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

It implies the tool is for producing an audience-ready narrative of a decision and lists the two accepted input forms, but it never explicitly states when to prefer it over siblings or when not to use it. No alternatives or exclusions are mentioned, so the agent is left to infer usage from purpose.

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.4/5.0
Disambiguation5/5

Each tool targets a distinct resource and action: household CRUD, bulk import/mapping, projection/decision, model contract/run/verify, and narrative generation. Even the superficially similar pairs (project_household vs decide_household; run_model vs verify_claim) are clearly separated by their descriptions.

Naming Consistency5/5

All tool names use lowercase snake_case with imperative verb-first naming (create_, get_, patch_, replace_, run_, verify_). Pluralization follows natural semantics (list_models, import_households) without breaking the overall verb_noun pattern.

Tool Count5/5

13 tools is within the ideal range for a domain server. Each tool earns its place: household lifecycle, import tooling, model contract/run/verify, projection/decision, and narration form coherent clusters without redundancy.

Completeness4/5

Core workflows are well covered: create/read/update households, project and decide, list/get/run/verify models, and narrate decisions. Minor gaps remain: there is no delete_household or list_households, and no dedicated get_decision tool for retrieving a stored decision object independently.

Resources