Skip to main content
Glama

AssetFare

assetfare_observe_destination

Idempotent

Verify an already-submitted destination UserOperation receipt and finalize the workflow. Requires caller approval; it never submits a transaction.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
session_idYes
access_tokenYes
idempotency_keyYes
transaction_hashYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A3.9/5.0
Behavior4/5

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

Annotations already declare idempotentHint=true, destructiveHint=false and openWorldHint=true, and the description reinforces this with 'never submits a transaction' — valuable confirmation for a tool whose readOnlyHint is false (it mutates workflow state). The 'requires caller approval' note adds an auth precondition the annotations do not convey. It does not describe rate limits, failure modes, or what state change 'finalize' performs.

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?

Two tight sentences, zero filler, with the core action front-loaded and the safety caveat second. Nothing repeats the name or title.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With four required, undocumented parameters, no output schema, and a state-mutating 'finalize' step, the description omits the essentials an agent needs: parameter intent, what finalization produces, and what happens on a verification failure. Purpose and safety are covered, but the operational contract is not.

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

Parameters2/5

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

None of the four required parameters (access_token, session_id, transaction_hash, idempotency_key) are mentioned, and schema description coverage is 0% — the schema supplies only format/pattern constraints, not meaning. For example, the agent gets no hint of how transaction_hash relates to the receipt being verified or whether idempotency_key must be reused across retries.

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+resource ('Verify an already-submitted destination UserOperation receipt') plus the workflow outcome ('finalize the workflow'). The word 'destination' cleanly separates it from the sibling assetfare_verify_source_receipt, so an agent can route between them without opening either schema.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Positions the tool clearly in the workflow: it is used on an already-submitted receipt to finish the flow, and it explicitly notes caller approval is required. It does not name an alternative tool or state what to do if the receipt is not yet submitted, so it stops short of full when/when-not guidance.

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.