Skip to main content
Glama

Start AUX RWA Action Preflight

aux_rwa_action_preflight_start
Idempotent

Start the live RWA evidence dialogue for an Ethereum or Base BUY, TRANSFER, or ACCEPT action. Returns the normalized target, current public/on-chain evidence, targeted questions, and a private confirmation token. This never authorizes or executes an action.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
actionYes
policyNo
networkYes
principal_idNo
payment_assetYes
amount_decimalYes
token_contractYes
agent_assertionNo
idempotency_keyYes
receiving_walletYes

TDQS

A3.7/5.0
Behavior4/5

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

Beyond the annotations, the description adds a critical behavioral boundary: it never authorizes or executes an action. It also discloses that a side-effecting 'dialogue' starts and that a private confirmation token is created, which is useful given readOnlyHint=false.

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?

Three tight sentences with no filler; the operation, return value, and safety boundary are each given one focused sentence. The most important scoping information is front-loaded.

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?

The tool is complex (10 parameters, a nested policy, no output schema) but the description does not explain the purpose of most parameters, how the confirmation token should be used, or how this connects to the continuation tool. It provides only a high-level skeleton, which is not enough for correct invocation.

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?

With schema description coverage at 0%, the description must carry parameter meaning, but it only clarifies action and network. Seven required parameters such as idempotency_key, token_contract, receiving_wallet, amount_decimal, payment_asset, and the nested policy object are left to be inferred from names and patterns.

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?

Uses a specific verb ('Start') plus a clear resource ('live RWA evidence dialogue') and narrows the scope to Ethereum/Base BUY, TRANSFER, or ACCEPT actions. The closing safety statement and the 'Start' wording distinguish it from the preflight_capabilities and preflight_continue siblings.

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 implies this is the initiating step of a dialogue and that a token is produced for later use, but it never explicitly says to use preflight_capabilities first or preflight_continue after obtaining the token. No alternative tools or exclusion conditions are named.

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.

TDQS

A3.9/5.0
Disambiguation4/5

Each tool targets a distinct domain or lifecycle step, and descriptions clearly separate capability discovery from evaluation and verification. The two evaluation-like tools (aux_evidence_evaluate and aux_transaction_preflight) could be confused at a glance, but their scenarios are explicitly differentiated.

Naming Consistency4/5

All names use the aux_ prefix with snake_case, which is a consistent and readable pattern. There is minor inconsistency in whether the final token is a verb (evaluate, verify, start, continue) or a noun (capabilities, preflight, evidence), but the overall structure is predictable.

Tool Count5/5

Ten tools is well within the ideal range and each tool earns its place: three capability discovery tools, several scenario-specific preflight evaluators, a three-step RWA dialogue flow, and a receipt verifier. Nothing feels redundant or bloated.

Completeness4/5

The surface covers discovery, evaluation, continuation, and verification across multiple financial evidence domains, including a full dialogue lifecycle for RWA actions. Minor gaps exist, such as no general status/history endpoint for past preflights, but the core workflows are complete and operational.

Resources