Skip to main content
Glama

bitcoin-stratigraphy

List Proof Attestations

proof.list
Read-onlyIdempotent

PURPOSE: Lists and filters proof attestations held in the node's bounded process-memory index. USAGE: Use exclusively to query or filter arrays of indexed attestations. Do NOT use to fetch an individual proof or snapshot's status by identifier; use proof.status instead. PARAMETERS: limit is an integer from 1 to 100 with default 20; offset is an integer from 0 to 1000 with default 0; status is one of verified, cached, pending, or invalid. BEHAVIOR: Filters the process-memory index, orders matches newest first, applies offset and limit, and calculates mesh quorum without durable database writes. Rate limit: 60 req/min per IP shared across /mcp. RETURNS: Object containing attestations with proofHash, snapshotDigest, status, submittedAt, attestationCount, and meshQuorum, plus total before pagination. ERRORS: -32602 (Invalid Parameters) for invalid fields, ranges, or status values; HTTP 429 (Rate Limit) when the shared limit is exceeded. No 402 payment required.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of records to return (integer, 1-100).
offsetNoZero-based pagination skip offset count.
statusNoFilter records by attestation lifecycle state: verified, cached, pending, or invalid.verified

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
totalYesTotal number of indexed attestation records matching the optional status filter before the limit is applied.
attestationsYesRecent indexed proof attestations ordered from newest to oldest.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.7/5.0
Behavior5/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, and the description adds substantial behavioral context: bounded process-memory index, newest-first ordering, offset/limit handling, mesh quorum calculation, no durable database writes, and a shared rate limit. No contradiction exists between the description and annotations.

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 organized into labeled sections with no wasted sentences. It front-loads purpose and usage, then covers parameters, behavior, returns, and errors in a compact format that an agent can parse quickly.

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 listing tool with an output schema, the description still covers return fields, pagination totals, error codes, rate limiting, and shared-limit behavior. An agent has everything needed to select, invoke, and interpret results from this tool correctly.

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% and each parameter already has type, range, default, and enum documentation. The description restates the constraints in prose but does not add meaning beyond the schema, so the baseline of 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?

States a specific verb and resource: 'Lists and filters proof attestations held in the node's bounded process-memory index.' It clearly distinguishes itself from proof.status, which is the sibling for fetching individual status, so an agent can understand the scope without opening the schema.

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?

Provides explicit usage direction: 'Use exclusively to query or filter arrays of indexed attestations' and directly warns against using it for individual status, routing to 'proof.status instead.' This leaves no ambiguity about when to choose this tool over its sibling.

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.

Resources