Skip to main content
Glama

runvouch_run_proof

Read-only

Tamper-evident proof of a finished run: hashed record, Merkle path, day root, chain hash and OpenTimestamps status. Verify offline with templates/verify_proof.py.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
run_idYes

TDQS

A3.8/5.0
Behavior4/5

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

The readOnlyHint annotation already covers the safety profile, and the description adds meaningful context beyond it: the internal structure of the proof (Merkle path, day root, chain hash) and the offline verification path. It also implies the run must be finished for the proof to exist. This is useful behavioral context, with no contradiction of the annotation.

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 totaling roughly 30 words, with the core purpose front-loaded and zero filler. The first sentence defines the deliverable and its contents; the second provides the actionable verification pointer. Every sentence earns its place.

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 simple read-only tool with a single parameter and no output schema, the description covers the essential ground: it lists what the proof contains (serving as the return-value description) and how to verify it offline. Minor gaps remain — the source of run_id and behavior for unfinished runs — but both are reasonably inferable from 'proof of a finished run.'

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 coverage is 0%, with only an undocumented required run_id string, so the description carries the documentation burden. It partially compensates by establishing that the proof concerns 'a finished run,' making it clear run_id refers to that run's identifier. However, it never explicitly names or explains the parameter, its format, or how an agent might obtain a valid run_id.

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 identifies the resource — a tamper-evident proof bundle for a finished run — and enumerates its contents (hashed record, Merkle path, day root, chain hash, OpenTimestamps status), which distinguishes it from siblings like runvouch_status and runvouch_runs. However, the primary action verb is implicit; it never explicitly states whether the tool generates, retrieves, or returns the proof.

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?

Usage context is implied: 'proof of a finished run' signals the tool is for completed runs and the verification workflow is described via 'verify offline with templates/verify_proof.py.' However, no sibling tools are named and there is no explicit statement of when to choose this over runvouch_status or runvouch_runs, leaving tool-selection guidance to inference.

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
Disambiguation4/5

Tools target distinct resources (alerts, runs, status, proofs), but runvouch_alerts and runvouch_status both surface open alerts, and runvouch_runs overlaps somewhat with runvouch_status's run-history display. Descriptions are specific enough to prevent serious misselection.

Naming Consistency3/5

All tools share the runvouch_ prefix, but the style mixes bare verbs (runvouch_ack), noun lists (runvouch_alerts, runvouch_runs), and noun-verb compounds (runvouch_run_start, runvouch_run_end). The names are readable, but there is no single consistent verb_noun convention.

Tool Count5/5

Seven tools is a well-scoped size for a run-vouching/alerting server. Each tool serves a clear operational purpose: starting/ending runs, retrieving proof/history, and managing alerts.

Completeness4/5

The core lifecycle is covered: start run, end run with evidence, retrieve proof, list runs, check status, list/ack alerts. Minor gaps exist such as no detailed alert/run getter or evidence modification, but agents can complete main workflows without dead ends.