In four days, Claude Code auto mode becomes the default for all Pro, Max, and Team users. Your agent will make tool calls autonomously — no more clicking "approve" 97% of the time. The payment rails are ready. But can your agent actually find, try, and pay for the APIs it needs?
Anthropic's testing of auto mode versus manual approval produced stark results:
Translation: manual approval was theater. The safety classifier is genuinely better, the tokens are free, and it ships next week. This is the single biggest shift in agent autonomy since tool use shipped.
Auto mode means your agent can act. But acting usefully means hitting APIs — and many of the best ones cost money. Here's what your agent needs before Aug 14:
/api/discover that returns structured JSON your agent can filter and sort.x-402-amount, x-402-chain, x-402-token, x-402-recipient. Without these headers, your agent sees "402 Payment Required" and has no idea how much to pay, what token, or to whom. The x402 protocol specifies this — make sure the endpoints you call implement it.ai-sdk-x402 handles the 402 → pay → retry flow in one call.In the last two weeks, the x402 MCP ecosystem exploded:
| Solution | Chain | Type |
|---|---|---|
| Coinbase Agentic Wallet MCP | Base/Polygon/Solana | MCP server |
| x402-wallet-mcp | Base | MCP server |
| ag402 | Solana | MCP server |
| 402-mcp | Lightning + Cashu | MCP server |
| @three-ws/mcp-bridge | EVM + Solana | MCP server |
| agent-discovery-mcp | EVM | MCP server |
| ai-sdk-x402 | Any x402 facilitator | AI SDK tool |
Notice the pattern: everyone is building wallets. Nobody is building the mall.
An agent with a wallet and no discovery is like having Apple Pay installed in a town with no stores. The payment rails work — Cloudflare Wallets, OSL AgentPay, Mastercard AP4M, and Coinbase CDP handle settlement across USDC, RLUSD, EURC, and USDGO. $50 billion has moved through these rails. But only 2.2% was agent-initiated.
The bottleneck isn't payment. It's discovery + trust.
minia2a is the marketplace layer — the mall, not another wallet. Three design decisions that matter for auto mode:
# 1. Discover available endpoints
curl -s https://minia2a.uk/api/discover | jq '.services[:3]'
# 2. Try one free (5 trials per IP, no wallet)
curl -s https://minia2a.uk/x402/time
# 3. For AI SDK users: one import, automatic 402 handling
npm install ai-sdk-x402
The ai-sdk-x402 package (npm install ai-sdk-x402) wraps the entire 402 → pay → retry flow for Vercel AI SDK users. Your agent calls x402Tool({ endpoint, description }) and gets back a typed result. The package handles trial tracking, payment headers, and error classification — your agent never sees the 402.
When auto mode ships, millions of Claude Code agents will suddenly be able to act autonomously. The agents that are most useful will be the ones that can reach beyond their sandbox — calling APIs for real-time data, computation, and domain-specific intelligence.
The question isn't whether agents will consume paid APIs. It's whether they'll have a trustworthy place to find them.
Checklist summary: tool calls ✅ · discovery ⚠️ · trial-first ⚠️ · machine-readable pricing ⚠️ · spending limits 🔴 · endpoint verification 🔴. Three greens and a plan gets you to Aug 14 ready.
Ready for auto mode?
curl -s https://minia2a.uk/api/discover — 306 verified endpoints, trial-first, no wallet needed.
Numbers sourced from minia2a.uk/api/stats and independent x402 endpoint audits, August 2026.