Skip to main content
Glama
getAlby

OpenTimeStamps MCP Server

by getAlby

upgrade_proof

Complete incomplete OpenTimestamps proofs by fetching missing attestations to verify Bitcoin blockchain timestamps.

Instructions

Upgrade an incomplete OTS proof by fetching missing attestations

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
otsDataYesOTS proof data (hex string)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations, the description must carry behavioral disclosure. It does reveal that the tool fetches missing attestations (likely a network operation), but it omits whether the proof is mutated or returned, failure modes, and any auth/rate-limit context.

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?

A single, front-loaded sentence with no wasted words. It is appropriately sized for a one-parameter utility.

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?

For a simple one-parameter tool, the description covers purpose and mechanism, but with no output schema it should explain the return value, and with no annotations it should cover behavior more fully. Sibling guidance is also missing.

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 single parameter otsData has full schema description ('OTS proof data (hex string)'). The description adds no syntax, format, or validation details beyond the schema, so the baseline of 3 applies.

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?

States a specific verb ('Upgrade') and resource ('incomplete OTS proof') and adds the mechanism of fetching missing attestations. It does not name or contrast with sibling tools such as get_full_proof, so sibling differentiation is absent.

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

Usage Guidelines3/5

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

The phrase 'incomplete OTS proof' implies a precondition, but the description never states when to choose this over get_full_proof, load_proof, or verify_proof, nor does it list exclusions. Usage is left to inference.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.