Skip to main content
Glama

attest_status

Check one sealed claim by tenant plus seq or hash. Before reveal time only the receipt shows; after it the claim text and salt are included. With a nonce it returns the receipt of a paid answer instead: the sha256 of the answer bytes, its sequence number and, once sealed, the opBNB batch transaction and Merkle path

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
seqNo
hashNo
nonceNo
tenantYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
errorNo
foundYes
commitNo
recordNo
receiptNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedInput schema / x-lexicon / bundleSha256
      Previous value: -"a1c2e10fd3177d6b4d59ca78693e8fb36880165cf0f735f680dd86a510411178"New value: +"e5b4290024a229f2bdf97f8fc6a0079c3fe13b77267f41fdcffeb8b26aa1c41e"
  2. Changed1 schema field changed
    • changedInput schema / x-lexicon / bundleSha256
      Previous value: -"1eeb782ee15fe69fc80776948e0556fa6b795e210e6305935b2c97b73d955cda"New value: +"a1c2e10fd3177d6b4d59ca78693e8fb36880165cf0f735f680dd86a510411178"
  3. Changed1 schema field changed
    • changedInput schema / x-lexicon / bundleSha256
      Previous value: -"c014292cad7497ce9fd68c33345ac32cb42b672c8e77d6c749c26e162cc207e4"New value: +"1eeb782ee15fe69fc80776948e0556fa6b795e210e6305935b2c97b73d955cda"
  4. Changed2 schema fields changed
    • addedInput schema / x-lexicon
      Added value: +{
      +  "bundleSha256": "c014292cad7497ce9fd68c33345ac32cb42b672c8e77d6c749c26e162cc207e4",
      +  "name": "ChainHelix Agentic Lexicon",
      +  "resolve": "lexicon_resolve",
      +  "spec": "lexicon_spec",
      +  "version": "0.1.0"
      +}
    • addedInput schema / x-vocab
      Added value: +{
      +  "hash": "onchain.hashApi",
      +  "nonce": "agent.nonce",
      +  "seq": "agent.seq",
      +  "tenant": "agent.tenant"
      +}
  5. Changed4 schema fields changed
    • addedInput schema / properties / nonce
      Added value: +{
      +  "type": "string"
      +}
    • addedOutput schema / properties / commit
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "batch": {
      +      "additionalProperties": false,
      +      "properties": {
      +        "committedAt": {
      +          "type": [
      +            "number",
      +            "null"
      +          ]
      +        },
      +        "count": {
      +          "type": "number"
      +        },
      +        "firstSeq": {
      +          "type": "number"
      +        },
      +        "lastSeq": {
      +          "type": "number"
      +        },
      +        "opbnbTx": {
      +          "type": [
      +            "string",
      +            "null"
      +          ]
      +        },
      +        "root": {
      +          "type": "string"
      +        },
      +        "sentAt": {
      +          "type": [
      +            "number",
      +            "null"
      +          ]
      +        }
      +      },
      +      "type": "object"
      +    },
      +    "merklePath": {
      +      "items": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "h": {
      +            "type": "string"
      +          },
      +          "pos": {
      +            "type": "string"
      +          }
      +        },
      +        "type": "object"
      +      },
      +      "type": [
      +        "array",
      +        "null"
      +      ]
      +    },
      +    "note": {
      +      "type": "string"
      +    },
      +    "status": {
      +      "type": "string"
      +    },
      +    "verify": {
      +      "type": "string"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / properties / error
      Added value: +{
      +  "type": "string"
      +}
    • addedOutput schema / properties / receipt
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "bytes": {
      +      "type": "number"
      +    },
      +    "covers": {
      +      "type": "string"
      +    },
      +    "issuedAt": {
      +      "type": "number"
      +    },
      +    "lookup": {
      +      "type": "string"
      +    },
      +    "network": {
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "nonce": {
      +      "type": "string"
      +    },
      +    "seq": {
      +      "type": "number"
      +    },
      +    "settleTx": {
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "sha256": {
      +      "type": "string"
      +    },
      +    "tool": {
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
  6. Added

TDQS

A4.3/5.0
Behavior5/5

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

With no annotations provided, the description fully carries the behavioral disclosure burdencars and does so thoroughly. It explains that pre-reveal only the receipt is shown, post-reveal the claim text and salt appear, and the nonce path returns the sha256 of answer bytes, sequence number, and once sealed the opBNB batch transaction and Merkle path.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The core purpose is front-loaded in the first phrase, but the second sentence is a dense run-on packed with several conditional behaviors. All content is relevant precisely because of the tool's variety of states, yet a light restructuring would improve readability.

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?

For a status-checking tool with no annotations but a rich output schema, the description covers the major cases: pre-reveal, post-reveal, and paid-answer receipts with their eventual sealing details. It stops short of specifying mutual exclusivity of parameters or behavior when a nonce has not yet been sealed, leaving some edge cases to the output schema.

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?

Schema description coverage is 0%, so the description must compensate. It indicates that 'tenant plus seq or hash' are the claim identifiers and that 'nonce' switches to a paid-answer receipt, giving the agent meaningful parameter roles that the schema lacks. It does not fully specify combination rules, like whether nonce replaces seq/hash or whether hash must be hex-encoded.

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 names a specific verb ('Check') and a precise resource ('one sealed claim') addressed by tenant plus seq or hash, which clearly differentiates this from broader sibling tools like list_attestations or attestation_stats. It also covers the nonce variant for paid-answer receipts, leaving little ambiguity about what the tool does.

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 description gives helpful temporal context (before vs. after reveal time) and distinguishes the nonce-based paid-answer path, but it never explicitly states when to choose attest_status over sibling tools such as verify_reveal, list_attestations, or attest. Usage is implied rather than directly routed.

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