Self-hosted MCP proxy that puts an x402 paywall in front of an existing MCP server
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
Put an x402 paywall in front of an MCP server you already run β charge AI agents per tool call without changing a line of that server's code.
The proxy is an MCP server to the agent and an MCP client to yours. It mirrors every tool your server exposes; the ones you price are paywalled, the rest pass through free.
| Your situation | Use |
|---|---|
| You can edit your MCP server (Node/TS) | x402-merchant-sdk/mcp β three lines around your handler, nothing in the data path |
| You cannot β third-party, closed-source, or not Node | this proxy |
If you can edit your server, do that instead. It is simpler and strictly fewer moving parts. This package exists for the case where that is not an option.
You run this process. We never do, and we do not offer a hosted version.
That is a deliberate product decision, not a default you can flip. A proxy sits between an agent and your server, so a hosted one would mean CryptoAPIs holding your upstream server's credentials, sitting in the cleartext path of your tool arguments and results, and owing you uptime on your own revenue. For a merchant whose product is the data flowing through those calls, that is not a reasonable thing to ask. Self-hosting removes the question rather than answering it.
What that guarantees, structurally:
_meta["x402/payment"] (is it paid for?) β nothing else. They are never parsed, logged,
buffered, or cached./verify and /settle the payment
itself.${VAR} reads from the environment, so the config file itself holds no secrets and is safe to commit.
amount is in atomic units β USDC has 6 decimals, so "10000" is $0.01. Getting this wrong by
10^6 is the easiest mistake here.
An HTTP upstream instead of stdio:
To accept several assets or networks for one tool, pass an array β the agent picks one. Offer only
what GET https://ai.cryptoapis.io/x402/merchant/supported lists (public, no key); anything else is
advertised and then rejected at /verify.
Then point agents at the proxy instead of your server. In Claude Code:
Everything is validated at boot β the config, the upstream connection, and whether the tools you priced actually exist upstream. A typo'd tool name is a hard failure, not a silent revenue hole: the alternative is believing a tool is paywalled while it quietly serves for free.
| Step | Result |
|---|---|
| Unpaid call to a priced tool | isError: true carrying PaymentRequired in both structuredContent and content[0].text |
| Agent pays | Signs locally, retries with the payload in _meta["x402/payment"] β raw JSON, no base64 |
| Paid call | Your tool's real result, with the receipt in _meta["x402/payment-response"] |
| Call to an unpriced tool | Forwarded, free, unchanged |
Your server is never called until payment has settled. The proxy charges and then forwards β it does not forward and then bill. An unpaid call cannot reach your server at all, so it cannot be made to do the work for free.
Priced tools advertise [paid: x402] in their description so an agent knows the cost before
calling. An agent that discovers a price only by being refused has already wasted a round-trip.
Agents pay with @cryptoapis-io/mcp-x402-pay
or, in code, @cryptoapis-io/x402-buyer-sdk/mcp.
X402_FACILITATOR feature."settle": false verifies without settling β useful while wiring up, but advisory only: the buyer
proved they could pay, not that they did. Never ship it.eip155:84532) before charging real money.Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/mcp-x402-accept)<a href="https://allmcps.com/mcp/mcp-x402-accept"><img src="https://allmcps.com/api/badge/mcp-x402-accept?style=directory" alt="Mcp X402 Accept on AllMCPs" /></a>