Skip to main content
ClaudeWave
dexl-io avatar
dexl-io

x402-agent-example

View on GitHub

Pay an API with x402 in ~10 lines: free tier needs no wallet, one signature for paid calls, plus MCP config.

MCP ServersOfficial Registry0 stars0 forksJavaScriptMITUpdated today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 9/18/2026
Install in Claude Code / Claude Desktop
Method: Manual
Claude Code CLI
git clone https://github.com/dexl-io/x402-agent-example
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "x402-agent-example": {
      "command": "node",
      "args": ["/path/to/x402-agent-example/dist/index.js"],
      "env": {
        "PRIVATE_KEY": "<private_key>"
      }
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Clone https://github.com/dexl-io/x402-agent-example and follow its README for install instructions.
Detected environment variables
PRIVATE_KEY
Use cases

MCP Servers overview

# Pay an API with x402 — in about ten lines

[x402](https://x402.org) is HTTP 402 put to work: a server answers `402 Payment Required`
with the exact price, the client signs a stablecoin payment and repeats the same request.
No account, no API key, no invoice.

These examples call [DexL Agents](https://agents.dexl.io), an x402 gateway
(chat models, speech, web search and crawl, on-chain reads, FX rates, NLP tools).
Everything here works against any x402 server — only the URL changes.

## 1. Free: no wallet at all

```bash
npm install
npm run free
```

`free.mjs` does two things:

- calls the **free tier** (`model: "dexl-free"`) — no payment header, no wallet, no account;
- asks what a **paid** call would cost by sending it *without* payment and reading the 402.

Real output:

```
free answer: HTTP 402 (Payment Required) is a non-standardized status code reserved for future use...
web-search costs 0.01 USDC on eip155:8453 (HTTP 402)
```

## 2. Paid: one call, one signature

```bash
PRIVATE_KEY=0x... npm run paid
```

The payment is these three lines; after them it is ordinary `fetch`:

```js
const signer = toClientEvmSigner(wallet);
const client = new x402Client().register('eip155:8453', new ExactEvmScheme(signer));
const fetchWithPay = wrapFetchWithPayment(fetch, client);
```

Your key stays on your machine — the server only ever sees a signed payment.
Settles in USDC on Base, Polygon, Arbitrum or Solana. **Error responses are not charged.**

> The free example above was run as-is. The paid one needs your own funded wallet,
> so run it yourself with a small balance; it uses the same client our own service uses.

## 3. Connect an MCP client

Remote (free tools only — a remote server holds no wallet of yours):

```
https://agents.dexl.io/mcp
```

Local, with paid tools, because the wallet stays on your machine:

```json
{
  "mcpServers": {
    "dexl": {
      "command": "npx",
      "args": ["-y", "dexl-agents", "mcp"],
      "env": { "DEXL_BASE_URL": "https://agents.dexl.io", "DEXL_PRIVATE_KEY": "<optional>" }
    }
  }
}
```

## What you can call

`GET /v1/tools` lists every tool with its price and schema.
Machine-readable: [`/llms.txt`](https://agents.dexl.io/llms.txt) ·
[`/openapi.json`](https://agents.dexl.io/openapi.json) ·
[`/.well-known/x402`](https://agents.dexl.io/.well-known/x402) ·
[`/.well-known/mcp`](https://agents.dexl.io/.well-known/mcp)

MIT licensed. Issues and pull requests welcome.
agent-paymentsai-agentsbasehttp-402mcpmicropaymentsusdcx402

What people ask about x402-agent-example

What is dexl-io/x402-agent-example?

+

dexl-io/x402-agent-example is mcp servers for the Claude AI ecosystem. Pay an API with x402 in ~10 lines: free tier needs no wallet, one signature for paid calls, plus MCP config. It has 0 GitHub stars and its last recorded update is dated 2026-09-17.

How do I install x402-agent-example?

+

You can install x402-agent-example by cloning the repository (https://github.com/dexl-io/x402-agent-example) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is dexl-io/x402-agent-example safe to use?

+

Our security agent has analyzed dexl-io/x402-agent-example and assigned a Trust Score of 95/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.

Who maintains dexl-io/x402-agent-example?

+

dexl-io/x402-agent-example is maintained by dexl-io. The last recorded GitHub activity is dated 2026-09-17, with 0 open issues.

Are there alternatives to x402-agent-example?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy x402-agent-example to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: dexl-io/x402-agent-example
[![Featured on ClaudeWave](https://claudewave.com/api/badge/dexl-io-x402-agent-example)](https://claudewave.com/repo/dexl-io-x402-agent-example)
<a href="https://claudewave.com/repo/dexl-io-x402-agent-example"><img src="https://claudewave.com/api/badge/dexl-io-x402-agent-example" alt="Featured on ClaudeWave: dexl-io/x402-agent-example" width="320" height="64" /></a>

More MCP Servers

x402-agent-example alternatives