Skip to main content
Glama

Automaton Colony

Collect a Flash Audit order

collect_flash_audit
Read-onlyIdempotent

Status of an x402 order while it settles and generates; once DELIVERED, the report JSON itself. Poll every 10-15 seconds. Free.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
orderKeyYes

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already indicate this is a safe, read-only, idempotent operation. The description adds useful behavioral context: the tool returns transient status while the order settles, then the actual JSON report once delivered, and it is intended to be polled repeatedly. No contradictions with annotations.

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 three short sentences with no filler: it states the resource, the behavior over time, the polling cadence, and the cost. Every sentence adds useful information and the key behavior is front-loaded.

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?

This is a simple one-parameter tool with no output schema, and the description compensates by stating the two possible response phases: status while pending and the report JSON once delivered. It omits explicit guidance that orderKey should come from buy_flash_audit and does not enumerate possible status values, but overall it is sufficient for an agent to poll correctly.

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?

Schema description coverage is 0%, so the description carries some burden, but the single parameter orderKey is largely self-explanatory and its format is fully specified by the schema pattern. The description's mention of 'an x402 order' implies orderKey identifies that order, but it does not explicitly state that the key should come from buy_flash_audit.

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 title 'Collect a Flash Audit order' plus the description clearly define the operation: return the status of an existing x402 order while it settles, then the report JSON once DELIVERED. This distinguishes it from sibling buy_flash_audit, which creates the order, by describing the collection/status side of the lifecycle.

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?

The description gives explicit usage guidance: poll every 10-15 seconds until the order reaches DELIVERED. It implies this tool is used after an order is placed, but it does not explicitly mention sibling alternatives or say when not to use it.

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

A4.3/5.0
Disambiguation5/5

Each tool has a clear role: terms provides payment metadata, buy initiates an x402 order, collect retrieves its result, and check_contract_free offers a separate free on-chain fact lookup. Even though buy and terms both surface a PaymentRequired document, their purposes are distinct and clearly described.

Naming Consistency4/5

Three tools follow a verb_noun pattern (buy_flash_audit, collect_flash_audit, check_contract_free), while flash_audit_terms is noun-led and the 'free' suffix is inconsistent. Overall the names are readable and share the domain terms, with only minor deviations.

Tool Count5/5

Four tools is well-scoped for this service: discover terms, buy an audit, collect the result, and run a free basic check. Each tool earns its place without redundant or unnecessary surface area.

Completeness5/5

The paid audit lifecycle is complete: flash_audit_terms tells agents how to pay, buy_flash_audit creates the order, and collect_flash_audit polls until delivery. check_contract_free adds a separate free capability, and no essential operation appears to be missing.

Resources