Skip to main content
Glama

Notarize a fingerprint (nothing is uploaded)

notarize_hash

Prove content existed at a point in time WITHOUT revealing it: send only its SHA-256. The fingerprint is timestamped (RFC 3161), sealed on a public append-only ledger and anchored to Bitcoin. Ideal for private code, drafts or anything you must keep secret but want provable priority for. Free, no account. Proves existence and time — not authorship.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
modelNoOptional AI model to credit.
handleNoPublic name to record it under.
source_urlNoOptional public reference.
output_hashYes64-char hex SHA-256 of the EXACT BYTES you will reveal later. Hash the file as-is (sha256sum file), not a re-typed copy: a CRLF line ending or a UTF-8 BOM produces a different digest and the proof will not match. If the file travels through Git, normalise to LF first (git config core.autocrlf false) or hash the blob everyone shares.

TDQS

A4.4/5.0
Behavior5/5

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

Beyond the annotations (readOnlyHint=false, destructiveHint=false), the description discloses important behavior: 'nothing is uploaded', the fingerprint is 'timestamped (RFC 3161), sealed on a public append-only ledger and anchored to Bitcoin', and it is 'Free, no account.' These details give the agent a clear picture of the tool's operation and effects, exceeding the minimal annotation information.

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 just a few sentences, front-loaded with the main action and key differentiator ('nothing is uploaded'). Every sentence contributes useful information—purpose, mechanism, ideal use case, cost, and limitation—without redundancy.

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?

The description covers purpose, use case, behavior, and limitations comprehensively for a tool with no output schema. The only missing piece is what the caller should expect as a result (e.g., a certificate or receipt). Since there is no output schema, mentioning the return value would make it 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?

The input schema already explains all four parameters with full coverage, including a highly detailed description of output_hash (exact bytes, line ending issues). The tool description adds the general concept of 'send only its SHA-256' but no new parameter-specific semantics beyond what the schema already provides. 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's specific purpose: 'Prove content existed at a point in time WITHOUT revealing it: send only its SHA-256.' It uses a specific verb ('prove') and resource ('SHA-256 fingerprint'), distinguishes it from siblings by explaining it is not for authorship, and the title reinforces that nothing is uploaded.

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?

Provides clear when-to-use guidance: 'Ideal for private code, drafts or anything you must keep secret but want provable priority for.' It also explicitly states what it does not do ('Proves existence and time — not authorship'), which helps exclude it from authorship-related tasks. However, it does not name an alternative tool, so it lacks an explicit 'use X instead' pointer.

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

Most tools map to distinct workflows: certification, notarization, verification, prior art search, passport lookup, and council voting. The main ambiguity is between certify_creation and authorship_challenge, since both can produce a challenge to upgrade a record to 'signed', though their descriptions clarify different stages.

Naming Consistency3/5

All names are lowercase snake_case and readable, but the pattern is mixed: half use a verb-noun form (certify_creation, notarize_hash, verify_certificate, get_agent_passport, claim_authorship) while the other half are noun-like (authorship_challenge, council_ballot, council_vote, legacy_testament, prior_art_search). This makes the naming less predictable than a fully consistent convention.

Tool Count5/5

Ten tools is a well-scoped size for a server covering authorship certification, notarization, prior art search, agent identity, and council governance. Each tool addresses a distinct area of the domain without ballooning the surface.

Completeness3/5

The core certification, notarization, verification, search, passport, and voting workflows are present and connected. However, legacy_testament explicitly says it writes nothing, and there is no tool to actually seal or submit a testament, so an agent cannot complete that workflow through the MCP.