Skip to main content
Glama

bitcoin-stratigraphy

Get Mesh Status

mesh.status
Read-onlyIdempotent

PURPOSE: Retrieves current peer topology, propagation, cross-validation, and quorum health for the mesh node. USAGE: Use to inspect peer connectivity and consensus readiness. Do NOT use for individual proof validation or telemetry retrieval; use proof.verify or stratigraphy.get instead. PARAMETERS: No input properties are accepted. BEHAVIOR: Observes current in-process mesh service metrics without changing proof or telemetry state. Rate limit: 60 req/min per IP shared across /mcp. RETURNS: Object containing nodePubkey, activePeerCount, configuredPeerCount, topologyHealth, crossValidationSuccessRate, averagePropagationLatencyMs, and quorumThreshold. ERRORS: -32602 (Invalid Parameters) when any input property is supplied; HTTP 429 (Rate Limit) when the shared limit is exceeded. No 402 payment required.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
nodePubkeyYesLowercase hexadecimal Nostr public key identifying this mesh node.f72cc555ec2948fdc4b5b2c2778821499ea8ce2b8569b68675899e296d3ff253
topologyHealthYesCurrent consensus topology health classification.healthy
activePeerCountYesNumber of recently validated nodes, including the local node.
quorumThresholdYesMinimum unique node attestations required for consensus.
configuredPeerCountYesNumber of remotely configured trusted peers.
crossValidationSuccessRateYesLifetime ratio of successful peer cross-validation attempts.
averagePropagationLatencyMsYesMean round-trip propagation latency for successful attestations.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A5/5.0
Behavior5/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint=false, and the description goes further by stating it 'observes current in-process mesh service metrics without changing proof or telemetry state' and disclosing the shared rate limit. This adds meaningful behavioral context beyond the structured annotations without contradicting them.

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 clear labeled sections: PURPOSE, USAGE, PARAMETERS, BEHAVIOR, RETURNS, and ERRORS. Every section adds necessary information, and the purpose is front-loaded so an agent immediately knows the tool's role.

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 parameterless, read-only tool, this description covers purpose, usage boundaries, behavior, rate limits, return fields, and error conditions. Nothing an agent needs to invoke it correctly is missing, and the output schema and annotations cover the rest.

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

Parameters5/5

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

There are zero parameters, so the baseline is 4. The description explicitly says 'No input properties are accepted' and documents the -32602 error for supplying any property, which adds value beyond the input schema's empty properties declaration.

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 opens with a specific verb and resource: 'Retrieves current peer topology, propagation, cross-validation, and quorum health for the mesh node.' It clearly distinguishes this from the sibling tools by name in the usage section, so an agent can reliably tell what this tool owns.

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?

It explicitly states when to use the tool ('inspect peer connectivity and consensus readiness') and when not to use it, naming the exact alternatives: proof.verify and stratigraphy.get. This removes ambiguity about tool selection.

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