payment_preflight
x402 paid deterministic payment firewall; 0.002 USDC on Base.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| policy | Yes | ||
| intent_id | No | ||
| payment_requirement | Yes |
x402 paid deterministic payment firewall; 0.002 USDC on Base.
| Name | Required | Description | Default |
|---|---|---|---|
| policy | Yes | ||
| intent_id | No | ||
| payment_requirement | Yes |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full disclosure burden. It does reveal two behavioral facts beyond structure: the call is paid (0.002 USDC) and it settles on Base, plus the 'firewall' framing implies a gating/blocking decision. However, it says nothing about auth/permissions, what the firewall validates, failure modes, or whether it mutates state.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
It is a single compact sentence fragment with zero filler, so it is concise. But brevity here shades into under-specification rather than effective front-loading.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with nested object parameters, no annotations, no output schema, and 0% schema coverage, the description is completely inadequate. An agent cannot determine what to pass or what the tool will return.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0% and two of three parameters ('policy', 'payment_requirement') are opaque nested objects. The description explains none of them, leaving the agent with no way to know what shape of policy or payment requirement is expected.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description is a tagline ('x402 paid deterministic payment firewall') rather than a stated verb+resource. It gestures at the payment domain and a screening role but never says what the tool actually does (e.g., checks a payment requirement against a policy and blocks/rejects it). It also fails to distinguish itself from the very similarly named sibling 'preflight'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no when-to-use guidance, no prerequisites, and no exclusions. The only usable signal is the implied cost of the operation (0.002 USDC), which hints the call is paid, but nothing tells the agent when to prefer this over 'preflight' or 'mandate_reserve'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.