OpenAI-compatible and MCP-native. Your agent gets an LLM by paying per call in USDC — no key to provision, rotate, or leak.
An autonomous agent with a wallet shouldn't need a human to go create an LLM API key for it. scrape402 is an x402 gateway that lets an agent pay per inference call in USDC on Base. It speaks two protocols agents already use:
A drop-in POST /v1/chat/completions — point any OpenAI SDK at it, no account
needed. The model field routes to fast or large tiers.
A Model Context Protocol server at /mcp/rpc exposes chat and live data as
MCP tools an agent can discover and call, paying from a prepaid session. Add it to any
MCP client and the tools appear.
curl -X POST https://x402.shizu.me/v1/free \
-H "Content-Type: application/json" \
-d '{"messages":[{"role":"user","content":"hello"}]}'
No wallet needed for the first call — see it work, then wire up x402 payment for unlimited pay-per-call access.