Skip to main content
Glama

create_certificate_pdf

Generate and archive the certificate PDF for a fingerprint attested in this session with attest_hash. The PDF is cryptographically signed, anchored in Bitcoin (OpenTimestamps) and archived server-side; this tool returns the permanent links (the PDF itself is downloadable from its URL — it is never inlined here).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sha256YesSHA-256 fingerprint of the work: 64 hexadecimal characters. Compute the SHA-256 locally if you have code execution (`sha256sum <file>` / `shasum -a 256 <file>` / `certutil -hashfile <file> SHA256`). NEVER send file bytes or base64 through tool arguments: this server never receives files. If you cannot compute a hash locally, point the user to the website (https://attestazione.spaziogenesi.org, full privacy: hashing happens in the browser) or the Telegram bot @SGAttestBot.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.5/5.0
Behavior4/5

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

No annotations are provided, so the description carries full burden. It discloses that the PDF is cryptographically signed, Bitcoin-anchored via OpenTimestamps, archived server-side, and returns permanent links. It also explains how the PDF is accessed (downloadable from URL, never inlined). This adds meaningful behavioral context beyond the structured schema.

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 with zero waste. The first sentence states the core action and key features (signing, anchoring, archiving). The second sentence clarifies the return behavior (permanent links, downloadable PDF). Every word adds value.

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?

Given a single parameter, no output schema, and no annotations, the description fully covers the tool's purpose, how to obtain the output, and important security/privacy details (do not send files, compute hash locally). It also mentions the return format (links) and access method (downloadable URL).

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already describes the 'sha256' parameter thoroughly (format, computation methods, warnings). The description adds value by linking the hash to the session context ('attested in this session with attest_hash'), explaining why this specific hash is needed, and reinforcing the privacy aspect (never send file bytes).

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 it generates and archives a certificate PDF for a fingerprint attested in the session via 'attest_hash'. It specifies the cryptographic signing, Bitcoin anchoring, and server-side archiving, distinguishing it from sibling tools like 'lookup_certificate' or 'verify_attestation'.

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 usage after 'attest_hash' by mentioning 'attested in this session'. It does not explicitly state when not to use or list alternatives, but provides clear context for when the tool applies.

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 clearly distinct purpose: authorization flow, attestation, verification, anchor checking, certificate lookup and creation, and health status. No overlapping responsibilities.

Naming Consistency4/5

Most tools follow verb_noun pattern (attest_hash, check_anchor, etc.), but 'authorize' is verb-only and 'service_status' is noun_noun, causing minor inconsistency.

Tool Count5/5

With 8 tools, the set is well-scoped for an attestation service, covering authorization, attestation, verification, certificate retrieval, anchor checking, and health monitoring.

Completeness4/5

Core workflow is covered (authorize, attest, verify, certificate), but lacks a tool to list all user attestations or manage sessions, a minor gap.