Skip to main content
Glama
mystiquemide

qualto-mcp

by mystiquemide

qualto_verify_receipts

Validate persisted claim attestations by re-reading them with read-only Binance calls and cross-checking against live order data, confirming the accuracy of trading claims.

Instructions

Re-read persisted claim attestations using read-only Binance calls.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations provided, the description carries the full behavioral disclosure burden. It explicitly states that the operation is read-only and uses Binance calls, which signals safety and an external dependency. It does not cover edge cases, but the key non-mutating behavior is clearly communicated.

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 concise sentence that front-loads the core action and resource before noting the read-only mechanism. Every phrase earns its place without unnecessary detail.

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 zero-parameter, read-only tool with an output schema present, the description covers the essential behavior and safety profile. It could add explicit guidance on when to use it among the sibling tools, but nothing critical is missing for invoking it correctly.

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?

The tool has zero parameters and schema coverage is effectively complete, so there is no parameter semantics gap for the description to fill. The baseline of 4 for a zero-parameter tool 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?

The description uses a specific verb ('re-read'), a clear resource ('persisted claim attestations'), and a method ('read-only Binance calls'). This clearly distinguishes it from mutating siblings like qualto_attest_claim and qualto_cleanup_claim.

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 're-read' language implies it should be used after attestations have been persisted, and 'read-only' contrasts with mutating operations. However, it does not explicitly state when to prefer this over other read-oriented siblings like qualto_read_context or qualto_session_status, nor does it name alternatives or exclusions.

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