Skip to main content
Glama
clevertech-os

VeriLock MCP

Get chain attestation

get_chain_attestation
Read-onlyIdempotent

Check the on-chain attestation status for a Nimiq transaction hash to verify document integrity and audit cryptographic evidence.

Instructions

Read the on-chain attestation status for a transaction hash.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
txHashYesNimiq transaction hash

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the tool is clearly a safe read. The description adds no behavioral context beyond the annotations, but it is consistent with them and does not introduce contradictions.

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 a single eight-word sentence with no filler, front-loading the verb and resource. Every word contributes to understanding.

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 single-parameter read operation with strong annotations, the description is mostly sufficient. However, with no output schema, it doesn't indicate the format or possible values of the returned attestation status, leaving a minor gap.

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 input schema provides 100% coverage with a description ('Nimiq transaction hash') for the only parameter, txHash. The tool description merely repeats the term 'transaction hash' without adding format, constraints, or examples, so it adds no value beyond the schema.

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?

The description uses a specific verb ('Read') and names a distinct resource ('on-chain attestation status') with a transaction hash input, making the operation clear. It does not explicitly distinguish itself from siblings such as get_signing_status or get_certificate, but the resource is concrete enough to be identifiable.

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?

No when-to-use or when-not-to-use guidance is provided, and no alternative tools are mentioned. The appropriate context is only implied by the verb/resource combination.

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