Skip to main content
Glama

proof_record

Records an AI execution as a Decision Proof Unit (DPU). Creates a cryptographically chained proof record with SHA-256 hash chain. Returns the created DPU with decision_id and chain hash.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagsNoTags for categorization
domainYesBusiness domain (e.g. rehab_care, market, edu, mentor, welfare)
purposeYesPurpose/reason for the decision
approvedNoWhether the decision was approved
reviewed_byNoHuman reviewer identifier
final_actionYesThe action that was taken (e.g. CREATE, UPDATE, APPROVE)
reference_idNoID of referenced entity
reviewer_roleNoRole of the reviewer (e.g. operator, admin)
evidence_levelNoEvidence level. Default: AUDIT_READY
reference_typeNoType of referenced entity

TDQS

A4/5.0
Behavior3/5

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

With no annotations, the description carries full burden. It discloses that the record is cryptographically chained with SHA-256 and returns decision_id and chain hash, but does not mention permissions, failure behavior, or immutability beyond the implied hash chain. This is moderate transparency.

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 three concise sentences, front-loaded with the action ('Records an AI execution...'), and contains no redundant or vague phrasing. Every sentence adds meaningful context about the creation and its output.

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 creation tool with 10 parameters and no output schema, the description adequately covers the essential return fields (decision_id, chain hash) and the cryptographic nature. It lacks details on error conditions or prerequisites, but given the simplicity of the operation, it is sufficiently 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 description coverage is 100% (all 10 parameters have descriptions). The tool description adds no extra semantics about the parameters themselves, only mentions return fields (decision_id, chain hash). Since the schema fully documents parameters, baseline 3 is appropriate.

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 tool records an AI execution as a DPU, using specific verbs and resource names. It distinguishes itself from siblings (proof_verify, proof_get, proof_report, etc.) which are for verification, retrieval, or export, while this is the creation tool.

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 implies use for recording proofs, and the sibling context makes it obvious this is the write operation. However, it does not explicitly state when not to use it or mention alternatives, so it stops short of explicit exclusion guidance.

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