Skip to main content
Glama

Timestamp many hashes in one transaction

batch_timestamp

Anchor a Merkle root over many sha256 digests in a single transaction — far cheaper per item than notarizing each one. Each hash gets an inclusion proof. Priced per call (pay over HTTP with an x402 payment — see /pay).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
hashesYessha256 hex digests to timestamp together

TDQS

A4.5/5.0
Behavior4/5

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

With zero annotations, the description carries the full disclosure burden and does so well: it discloses non-obvious pricing behavior, the batched/Merkle tree mechanics, and the HTTP/x402 payment requirement — unusual and critical for correct invocation. It doesn't cover error cases, idempotency, or response format, which slightly prevents a 5, but what it discloses (pricing model, payment path) is exactly the non-obvious behavioral information agents commonly misstep on.

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 sentences, ~50 words, zero redundancy. Each sentence earns its place: (1) what it does + economics, (2) what you get back, (3) cost/payment mechanics. Perfectly front-loaded with the core purpose in the first phrase, 'Anchor a Merkle root...' — the description is tight, scannable, and information-dense.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 1-parameter, no-output-schema tool with full schema coverage, this description hits every needed context: the operation's purpose, its performance characteristics (cheaper per item), return value expectations (inclusion proofs), and edge-case payment behavior (x402, /pay reference). The 5000-hash limit lives in the schema where it belongs, so nothing material is missing given the tool's simplicity.

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 100% — the single `hashes` parameter is fully defined with pattern, min/max constraints, and a description. Per rubric, baseline is 3 when schema does the heavy lifting. The description adds contextual value by explaining the batching benefit ('single transaction', 'inclusion proof'), but doesn't add syntax or format details for the parameter itself, which is appropriate since the schema already covers it.

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 uses highly specific language: 'Anchor a Merkle root over many sha256 digests' plus 'far cheaper per item than notarizing each one' clearly identifies the batch operation and differentiates it from the notarize_hash sibling. The title 'Timestamp many hashes in one transaction' reinforces the purpose with a specific verb+resource structure. This stands distinctly apart from siblings like archive_url or verify_hash.

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

Usage Guidelines5/5

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

The phrase 'far cheaper per item than notarizing each one' explicitly positions this tool AGAINST notarize_hash with a cost-based decision criterion — this is a when-to-use/when-not-to-use signal. The mention of 'Each hash gets an inclusion proof' gives the agent a reason to choose this tool (batch cost efficiency) and what value to expect. It never explicitly says 'use for batching, not single hashes,' but the implied tradeoff is unmistakable and actionable.

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

Each tool has a distinct purpose: capturing pages, anchoring hashes individually or in batches, fetching and verifying, and checking system status. There is no overlap or confusion between tools.

Naming Consistency5/5

All tool names use snake_case with descriptive verbs and nouns (e.g., archive_url, notarize_hash, verify_hash), following a consistent and predictable pattern.

Tool Count5/5

With 7 tools, the set is well-scoped for a notarization and archiving service, covering core operations without being overly sparse or bloated.

Completeness5/5

The tool surface covers the full lifecycle of timestamping and verification: single hash notarization, batch anchoring, web page capture, verifiable fetch, lookup by hash, and service status. No obvious gaps remain.

Resources