Skip to main content
ClaudeWave

Paid MCP server — 33 agent tools across Base + Solana on-chain primitives, captcha OCR, browser automation, and web utility. USDC settlement via x402. No API keys, no signup, agents pay per call.

MCP ServersOfficial Registry0 stars0 forksPythonMITUpdated today
ClaudeWave Trust Score
87/100
Trusted
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
Last scanned: 6/11/2026
Install in Claude Code / Claude Desktop
Method: pip / Python · onyx-paid-mcp
Claude Code CLI
claude mcp add onyx-mcp -- python -m onyx-paid-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "onyx-mcp": {
      "command": "python",
      "args": ["-m", "onyx-paid-mcp"],
      "env": {
        "ONYX_DEMO_KEY": "<onyx_demo_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.
💡 Install first: pip install onyx-paid-mcp
Detected environment variables
ONYX_DEMO_KEY
Use cases

MCP Servers overview

# onyx-paid-mcp — build a paid MCP server in 5 lines

[![PyPI](https://img.shields.io/pypi/v/onyx-paid-mcp.svg)](https://pypi.org/project/onyx-paid-mcp/)
[![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
[![x402](https://img.shields.io/badge/payments-x402-blue.svg)](https://x402.org)

USDC settlement on Base. No Stripe, no API keys, no signup flow. Charge AI agents per call directly through the protocol they already speak.

```python
from onyx_paid_mcp import App

app = App(
    name="hello-paid-mcp",
    receive_address="0xYourBaseWallet",
    network="base",   # or "base-sepolia" for free testnet
)

@app.tool(
    name="echo",
    price_usdc="0.001",
    description="Returns whatever you send.",
    input_schema={"type": "object", "properties": {"text": {"type": "string"}}, "required": ["text"]},
)
def echo(text: str) -> dict:
    return {"echoed": text}

if __name__ == "__main__":
    app.serve(port=8080)
```

That's it. `pip install onyx-paid-mcp`, point at any wallet address, decorate any function. You now have:

- **Streamable HTTP MCP** at `/mcp/` — installable in Claude Desktop, Cursor, Cline, mcp-use
- **REST endpoint** at `/v1/<tool>` — for non-MCP agents
- **HTTP 402 gate** that charges your wallet per call in USDC
- **Bazaar-discoverable manifest** at `/.well-known/x402.json` — Coinbase auto-indexes
- **Free introspection** at `/`, `/manifest`, `/health`

## Why

Every MCP today is free-as-in-unmetered. That breaks at scale for any tool with real per-call expense (OCR, scraping infra, LLM passes, anything backed by a physical resource). `onyx-paid-mcp` lets you charge directly through the agent's wallet — the same way a paywall works in a browser, except the wallet signs an EIP-3009 USDC authorization instead of pulling out a credit card.

## Install

```bash
pip install onyx-paid-mcp
```

Generate a Base wallet (`gen_wallet.py` in this repo, or any EVM wallet generator), set it as `ONYX_RECEIVE`, run your tool. Agents pay you in USDC the second they call.

## Reference implementation

[`onyx-actions`](https://onyx-actions.onrender.com) — the live server using this framework. Paid tools across Base on-chain primitives, captcha OCR, URL text extraction, DNS, WHOIS, email validation, IP geo, FX, browser automation, and a workflow chainer. All shipped as one-file modules in `tools_pkg/`.

| Tool | Price |
|---|---|
| `onyx_base_tx_explainer` | $0.05 |
| `onyx_base_tx_simulator` | $0.10 |
| `onyx_base_token_risk_scan` | $0.25 |
| `onyx_base_tx_decode` | $0.002 |
| `onyx_token_metadata` | $0.001 |
| `onyx_solana_tx_explainer` | $0.05 |
| `onyx_solana_token_metadata` | $0.0008 |
| `onyx_solana_token_risk_scan` | $0.25 |
| `onyx_solana_jupiter_quote` | $0.001 |
| `onyx_solana_wallet_activity` | $0.002 |
| `onyx_ens_resolve` | $0.0008 |
| `onyx_solve_captcha` | $0.003 |
| `onyx_url_text` | $0.001 |
| `onyx_url_unshorten` | $0.0005 |
| `onyx_whois` | $0.001 |
| `onyx_dns_lookup` | $0.0005 |
| `onyx_email_validate` | $0.0008 |
| `onyx_ip_geolocate` | $0.0008 |
| `onyx_fx_convert` | $0.0008 |
| `onyx_password_strength` | $0.0003 |
| `onyx_user_agent_parse` | $0.0003 |
| `onyx_browser_*` (6 tools) | $0.002–$0.008 |
| `onyx_agent_workflow` | $0.020 |

Smithery listing: <https://smithery.ai/servers/dimitrilaouanis/onyx-mcp>

## Integrations in flight

- **Stagehand (Browserbase)** — pay-per-call captcha hook over x402. Spec: [`BROWSERBASE_INTEGRATION.md`](BROWSERBASE_INTEGRATION.md). Discussion: [#1](https://github.com/dimitrilaouanis-tech/onyx-mcp/issues/1).

## How agents call you

Try it against the live reference server with one command — no install:

```bash
curl -X POST https://onyx-actions.onrender.com/v1/onyx_solana_jupiter_quote \
  -H "content-type: application/json" \
  -d '{"input_mint":"So11111111111111111111111111111111111111112","output_mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","amount":"1000000000"}' -i
# → HTTP 402 Payment Required
# → payment-required: <base64-encoded JSON with payTo, asset, amount, inputSchema>
```

Then sign an EIP-3009 USDC authorization and retry with `X-PAYMENT: <signed>`:

```bash
# Full client demo — shows the 402 → sign → 200 loop in 50 lines:
python examples/agent_pay.py onyx_solana_jupiter_quote
# Set ONYX_DEMO_KEY=0x... to actually pay + get the result
```

Any x402-aware client SDK (Coinbase CDP, Cloudflare Agent SDK, Privy, mcp-use) handles the loop in ~5 lines. Agents don't need to know your URL — the Coinbase Bazaar crawler picks up your `/.well-known/x402.json` from on-chain settled payments.

## Configure

The framework defaults are sane. Customize via constructor or env:

| Field | Default | Note |
|---|---|---|
| `name` | required | shows up in MCP, manifest, landing page |
| `receive_address` | required | where USDC settles |
| `network` | `base-sepolia` | or `base` for mainnet |
| `facilitator_url` | x402.org public | swap for Coinbase CDP / xpay / your own |
| `public_url` | None | sets the canonical URL in manifests |
| `description` | empty | short one-liner |
| `homepage` | None | optional landing page URL |

## Self-hosting checklist

1. Generate or pick a Base wallet (just an address — private key never leaves your machine; this is a receive-only flow)
2. Funded wallet not required to receive — only senders need USDC
3. Pick a host: Render free tier works; Fly.io machines for always-on; Cloudflare Tunnel + Oracle ARM for zero-cost-zero-cold-start
4. `pip install onyx-paid-mcp`, write your `app.py`, deploy
5. Submit `https://your-server/.well-known/x402.json` to Coinbase Bazaar — first settled payment auto-indexes you everywhere

## Status

`v0.1.0` — released April 2026. Battle-tested on `onyx-actions.onrender.com` (live since Apr 24).

## License

MIT — see [LICENSE](LICENSE).
agent-economyagent-paymentsagentic-commerceagentic-paymentsai-agentsbasebrowser-automationcaptchafastapijupitermcpmcp-servermodel-context-protocolpaid-mcprug-scannersolanatoken-risk-scantx-explainerusdcx402

What people ask about onyx-mcp

What is dimitrilaouanis-tech/onyx-mcp?

+

dimitrilaouanis-tech/onyx-mcp is mcp servers for the Claude AI ecosystem. Paid MCP server — 33 agent tools across Base + Solana on-chain primitives, captcha OCR, browser automation, and web utility. USDC settlement via x402. No API keys, no signup, agents pay per call. It has 0 GitHub stars and was last updated today.

How do I install onyx-mcp?

+

You can install onyx-mcp by cloning the repository (https://github.com/dimitrilaouanis-tech/onyx-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is dimitrilaouanis-tech/onyx-mcp safe to use?

+

Our security agent has analyzed dimitrilaouanis-tech/onyx-mcp and assigned a Trust Score of 87/100 (tier: Trusted). See the full breakdown of passed checks and flags on this page.

Who maintains dimitrilaouanis-tech/onyx-mcp?

+

dimitrilaouanis-tech/onyx-mcp is maintained by dimitrilaouanis-tech. The last recorded GitHub activity is from today, with 2 open issues.

Are there alternatives to onyx-mcp?

+

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

Deploy onyx-mcp 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: dimitrilaouanis-tech/onyx-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/dimitrilaouanis-tech-onyx-mcp)](https://claudewave.com/repo/dimitrilaouanis-tech-onyx-mcp)
<a href="https://claudewave.com/repo/dimitrilaouanis-tech-onyx-mcp"><img src="https://claudewave.com/api/badge/dimitrilaouanis-tech-onyx-mcp" alt="Featured on ClaudeWave: dimitrilaouanis-tech/onyx-mcp" width="320" height="64" /></a>

More MCP Servers

onyx-mcp alternatives