Skip to main content
Glama

verified-feed

verify_receipt

Recompute + verify a verification receipt's hash-chain (proves the verification is unaltered since its as-of date). Pass the receipt id.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It mentions recomputing and verifying a hash-chain, implying mutation and verification, but lacks details on side effects, permissions, or failure modes. Adequate but not thorough.

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, front-loaded with purpose. Every word adds value with no redundancy.

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?

Given the tool's simplicity (single parameter, no output schema), the description covers the core functionality but omits return values, prerequisites, and edge cases. Adequate for a simple tool but not fully complete.

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%, so the description must compensate. It states 'Pass the receipt id', adding meaning to the 'id' parameter, but no format or constraints are provided, leaving gaps.

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 clearly states the action (recompute and verify) and the resource (verification receipt's hash-chain), and explains the purpose (proves unaltered since as-of date). It is distinct from sibling tools like verify_record and verify_subject.

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?

No explicit guidance on when to use this tool vs alternatives. The description simply instructs to pass the receipt id, but does not provide context or exclusions.

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

A3.9/5.0
Disambiguation5/5

Each tool serves a distinct purpose: feed_status retrieves feed-level snapshots, verify_receipt checks receipt integrity, verify_record verifies a single feed record, and verify_subject performs independent subject checks. No functional overlap.

Naming Consistency4/5

Three tools follow the verb_noun pattern (verify_*), but feed_status is a noun_noun phrase, breaking consistency. All use lowercase with underscores, which is acceptable.

Tool Count5/5

Four tools are well-scoped for a verification server covering feed status, receipt verification, record verification, and subject verification. No unnecessary tools.

Completeness4/5

The set covers the core verification lifecycle: checking feed status, verifying records and subjects, and validating receipts. Missing a tool for listing feeds or retrieving specific receipts, but not critical.

Resources