mandate_reserve
x402 paid atomic spending-mandate reservation; 0.004 USDC on Base.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| amount | Yes | ||
| mandate_id | Yes | ||
| ttl_seconds | No | ||
| idempotency_key | Yes | ||
| capability_token | Yes | ||
| cumulative_limit | Yes |
x402 paid atomic spending-mandate reservation; 0.004 USDC on Base.
| Name | Required | Description | Default |
|---|---|---|---|
| amount | Yes | ||
| mandate_id | Yes | ||
| ttl_seconds | No | ||
| idempotency_key | Yes | ||
| capability_token | Yes | ||
| cumulative_limit | Yes |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden, and it does disclose two real behavioral traits the schema does not: the operation is paid (0.004 USDC) and atomic, and it settles on Base. However, it says nothing about authorization requirements (capability_token), idempotency/replay semantics despite requiring an idempotency_key, failure/rollback behavior, or the effect of ttl_seconds.
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 front-loaded clause with no filler, which is structurally clean. At the same time it is so terse that the sizing reads as under-specification rather than efficiency for a 6-param paid mutation tool.
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 payment-related mutating tool with 5 required params, no annotations, no output schema, and 0% schema documentation, the description is far too thin. It conveys cost and atomicity but leaves callers without idempotency, authorization, limit, or return-value context.
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% across 6 parameters (5 required), and the description explains none of them. Undocumented critical inputs like capability_token, cumulative_limit, idempotency_key, and ttl_seconds leave an agent guessing at formats and constraints.
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 names a specific verb+resource ('spending-mandate reservation') and adds distinguishing scope ('x402 paid atomic') that separates it from sibling verification/preflight tools. It is jargon-heavy but an agent can tell what operation is being performed.
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 guidance on when to call this versus payment_preflight, preflight, or verify, no prerequisites, and no mention of when a reservation should not be made. The cost disclosure implies it is a paid step but never states where it belongs in a workflow.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.