Skip to main content
Glama

proof_verify

Verifies a specific proof record's cryptographic integrity. Checks hash consistency and returns verification status.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataNoOptional original data for re-verification of hash
proofIdYesThe proof ID to verify

TDQS

B3.3/5.0
Behavior3/5

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

The description discloses the core behavioral trait—checking hash consistency and returning verification status—which is useful. However, with no annotations provided, it should also convey whether the operation is read-only, requires special permissions, or fails on mismatch; this information is absent.

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?

The description is two concise sentences that immediately state the primary action and outcome, with no redundant or filler content. It is well front-loaded and every word contributes value.

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 relative simplicity (2 params, no output schema), the description is adequate for understanding core functionality. However, with no annotations and no usage guidance, the overall context is incomplete for an agent deciding between this and sibling verify tools.

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?

Both parameters are fully described in the input schema, so the schema already covers their meaning. The description adds no additional parameter context beyond what the schema provides, keeping this at the baseline for high schema coverage.

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 states the tool verifies a specific proof record's cryptographic integrity and checks hash consistency, providing a specific verb and resource. It implies differentiation from siblings like proof_public_verify and proof_chain_verify through 'specific proof record', but does not explicitly name alternatives or contrast with them.

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?

The description gives no guidance on when to use this tool versus proof_public_verify, proof_chain_verify, or other siblings. It does not state prerequisites, exclusions, or typical scenarios, leaving the agent to infer usage solely from the name and 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

A3.9/5.0
Disambiguation4/5

Most tools are clearly distinct (record, get, export, report, chain verify), but proof_verify and proof_public_verify both verify cryptographic integrity with overlapping semantics. The descriptions clarify the auth and chain-link differences, but an agent could still confuse them.

Naming Consistency5/5

All tools follow a strict 'proof_' prefix with a verb action (get, record, verify, export, report, chain_verify, public_verify). The pattern is consistent, snake_case throughout, and predictable.

Tool Count5/5

With 7 tools covering proof recording, retrieval, verification, export, and reporting, the server is well-scoped for its purpose. No redundancy or bloat, and each tool serves a clear function.

Completeness4/5

The tool surface covers the full lifecycle of proof management: record (create), get (read), verify (check integrity), export (format), and report (human-readable output). A list operation is missing, but it's not critical for the domain's core workflows.

Resources