Server data from the Official MCP Registry
Pay-per-call MCP tools (crypto/DeFi data, web reading, AI tasks) in USDC over x402 on Base.
About
Pay-per-call MCP tools (crypto/DeFi data, web reading, AI tasks) in USDC over x402 on Base.
Security Report
Valid MCP server (2 strong, 3 medium validity signals). No known CVEs in dependencies. ⚠️ Package registry links to a different repository than scanned source. Imported from the Official MCP Registry. 1 finding(s) downgraded by scanner intelligence.
9 files analyzed · 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
Permissions Required
This plugin requests these system permissions. Most are normal for its category.
What You'll Need
Set these up before or after installing:
Environment variable: BUYER_PRIVATE_KEY
Environment variable: X402_ORIGIN
How to Install
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-entreprisedaney33-rgb-x402-seller-mcp": {
"env": {
"X402_ORIGIN": "your-x402-origin-here",
"BUYER_PRIVATE_KEY": "your-buyer-private-key-here"
},
"args": [
"-y",
"x402-seller-mcp"
],
"command": "npx"
}
}
}Documentation
View on GitHubFrom the project's GitHub README.
cryptomonnaie — pay-per-call API over x402
An Express server that sells paid API endpoints over the x402 protocol (USDC payments on Base), built to be consumed by AI agents.
A client (human or agent) calls a paid endpoint → the server replies
402 Payment Required with the payment requirements → the client signs a
USDC payment and replays the request with the PAYMENT header → a
facilitator verifies and settles the payment on-chain → the server
serves the response. No blockchain key management server-side: it only
holds the receiving address.
Available endpoints
All /api/* routes are paid (x402 payment required), except /health,
/stats, and /.well-known/x402.json, which are free. Every response is
clean JSON — never a raw 500, always {error: "..."} with the right HTTP
status code on any problem (validation, upstream source down, etc.).
Replace $URL with the server's URL (http://localhost:4021 locally, the
Render URL in production) in the examples below.
Crypto prices & gas (dedicated routes, optimized for agent search)
| Endpoint | Price | Example |
|---|---|---|
GET /api/price/eth-usd | $0.005 | curl "$URL/api/price/eth-usd" |
GET /api/price/btc-usd | $0.005 | curl "$URL/api/price/btc-usd" |
GET /api/price/sol-usd | $0.005 | curl "$URL/api/price/sol-usd" |
GET /api/price/usdc-supply | $0.005 | curl "$URL/api/price/usdc-supply" |
GET /api/gas/base | $0.005 | curl "$URL/api/gas/base" |
GET /api/gas/ethereum | $0.005 | curl "$URL/api/gas/ethereum" |
These are thin, single-purpose wrappers around the same sources as
/api/defi/price and /api/chain/gas below — kept as separate routes (with
narrow, intent-matching descriptions) so an agent searching for e.g. "ETH
price USD" or "gas price Base" finds and calls them directly, instead of
having to first discover the generic parameterized endpoint.
Crypto / DeFi data (source DefiLlama, free and open)
⚠️ License note: DefiLlama's terms of service restrict their free API to personal, non-commercial use and prohibit commercial exploitation of the data without prior written agreement (defillama.com/terms, clauses 7 and 8.10). These endpoints (plus the 6
/api/price/*and/api/gas/*ones above, which reuse the same sources) are built on it anyway, on the explicit and informed decision of this service's operator (compliance risk accepted) — to be revisited if DefiLlama raises the issue, or by moving to their paid Pro API (pro-api.llama.fi) if needed.
| Endpoint | Price | Example |
|---|---|---|
GET /api/defi/price | $0.005 | curl "$URL/api/defi/price?coins=ethereum,bitcoin" |
GET /api/defi/tvl | $0.005 | curl "$URL/api/defi/tvl?protocol=aave" |
GET /api/defi/tvl-chain | $0.005 | curl "$URL/api/defi/tvl-chain?chain=base" |
GET /api/defi/protocols | $0.005 | curl "$URL/api/defi/protocols?limit=20" |
GET /api/defi/yields | $0.005 | curl "$URL/api/defi/yields?chain=base&min_tvl=1000000" |
GET /api/defi/stablecoins | $0.005 | curl "$URL/api/defi/stablecoins?limit=20" |
On-chain data (public RPC reads via viem, no third-party API)
| Endpoint | Price | Example |
|---|---|---|
GET /api/chain/gas | $0.005 | curl "$URL/api/chain/gas?chain=base" (or chain=ethereum) |
GET /api/chain/block | $0.005 | curl "$URL/api/chain/block?chain=base" |
Web reading & extraction (fetch, readability, and — for extract — Claude Haiku 4.5)
| Endpoint | Price | Example |
|---|---|---|
POST /api/web/read | $0.005 | curl -X POST "$URL/api/web/read" -H "Content-Type: application/json" -d '{"url":"https://en.wikipedia.org/wiki/HTTP_402"}' |
POST /api/web/extract | $0.02 | curl -X POST "$URL/api/web/extract" -H "Content-Type: application/json" -d '{"url":"...","schema":{"type":"object","properties":{"title":{"type":"string"}}}}' |
POST /api/web/read downloads a page and returns its main content as clean
Markdown (readability extraction — boilerplate/nav/ads stripped), so an
agent never has to parse raw HTML. POST /api/web/extract does the same
fetch, then extracts structured JSON from the page according to a
caller-supplied JSON Schema, via Claude Haiku 4.5 — one call instead of
read-then-extract. Both are guarded against SSRF (see lib/web.js): the
target URL must be public http(s), private/loopback/link-local/reserved IP
ranges are refused (checked both on the initial host and on every redirect
hop), the download is capped at 2 MB within a 10 s budget, and the site's
robots.txt is honored (fails open — i.e. allows the fetch — only when
robots.txt itself is unreachable, the same convention real crawlers use).
Open public data
| Endpoint | Price | Source / license | Example |
|---|---|---|---|
GET /api/fx/rates | $0.005 | Frankfurter (MIT, open ECB data) | curl "$URL/api/fx/rates?base=EUR" |
GET /api/github/repo | $0.005 | GitHub REST API | curl "$URL/api/github/repo?full_name=expressjs/express" |
GET /api/npm/package | $0.005 | registry.npmjs.org + api.npmjs.org | curl "$URL/api/npm/package?name=express" |
GET /api/hn/top | $0.005 | Hacker News Firebase API (MIT) | curl "$URL/api/hn/top?limit=20" |
GET /api/wiki/summary | $0.005 | Wikimedia REST API (CC BY-SA 4.0, attribution included in the response) | curl "$URL/api/wiki/summary?title=Bitcoin&lang=en" |
GET /api/dns/lookup | $0.005 | Direct DNS resolution (Node's dns module) | curl "$URL/api/dns/lookup?domain=example.com" |
GET /api/rdap/domain | $0.005 | rdap.org (open protocol, WHOIS's successor) | curl "$URL/api/rdap/domain?domain=example.com" |
AI tasks (Claude Haiku 4.5, ANTHROPIC_API_KEY required)
| Endpoint | Price | Example |
|---|---|---|
POST /api/ai/summarize | $0.01 | curl -X POST "$URL/api/ai/summarize" -H "Content-Type: application/json" -d '{"text":"...","max_sentences":3}' |
POST /api/ai/classify | $0.01 | curl -X POST "$URL/api/ai/classify" -H "Content-Type: application/json" -d '{"text":"...","labels":["positive","negative","neutral"]}' |
POST /api/ai/translate | $0.01 | curl -X POST "$URL/api/ai/translate" -H "Content-Type: application/json" -d '{"text":"...","target_lang":"French"}' |
POST /api/ai/extract | $0.02 | curl -X POST "$URL/api/ai/extract" -H "Content-Type: application/json" -d '{"text":"...","schema":{"type":"object","properties":{"total":{"type":"number"}}}}' |
All the requests above return a 402 Payment Required first — replay them
with an x402 client (see scripts/buyer-test.js for a full example, or
@x402/fetch on the agent side).
Stack
- Node 20+, ESM, Express — no TypeScript.
- x402 v2 packages (current ecosystem, scoped
@x402/*):@x402/express— Express middleware (paymentMiddleware,x402ResourceServer)@x402/core— HTTP facilitator client (HTTPFacilitatorClient)@x402/evm—exactpayment scheme on EVM (server and client)@x402/fetch— buyer side: afetchwrapper that auto-pays 402s@x402/extensions— the Bazaar extension (discovery metadata for agents)@coinbase/x402— CDP facilitator config (mainnet)viem— key generation / EVM signing, RPC reads (/api/chain/*,/api/gas/*)express-rate-limit— per-IP rate limiting on/api/*routes@anthropic-ai/sdk— Claude Haiku 4.5 for the/api/ai/*and/api/web/extractendpointsjsdom+@mozilla/readability— safe HTML parsing and article extraction (the same engine behind Firefox Reader View) for/api/web/*turndown— HTML-to-Markdown conversion for/api/web/*robots-parser— robots.txt compliance for/api/web/*ipaddr.js— private/reserved IP classification for the/api/web/*SSRF guard
The older
x402-express/x402-fetchpackages (v1, unscoped) are deprecated — don't mix them with@x402/*.
Structure
server.js # starts Express, loads endpoints/, mounts the x402 middleware
config.js # reads .env, validates it, maps base-sepolia/base -> CAIP-2
discovery.js # builds the GET /.well-known/x402.json document
payment-log.js # logs every successful payment to logs/paiements.jsonl
sondage-log.js # logs every 402 response served ("probes") to logs/sondages.jsonl
lib/
http.js # fetchJson/fetchText (10s timeout, User-Agent), safeHandler (never a raw 500)
cache.js # 60s in-memory cache for market/network data
anthropic.js # shared Claude Haiku 4.5 client for /api/ai/* and /api/web/extract
chains.js # resolves ?chain=base|ethereum -> viem client, shared gas-price helper
defi.js # shared DefiLlama helpers for /api/price/*
web.js # SSRF-guarded page fetch + readability-to-Markdown extraction for /api/web/*
stats.js # computes GET /stats from the two jsonl logs
endpoints/ # one file = one endpoint, auto-loaded
health.js # GET /health (free)
stats.js # GET /stats (free)
defi-tvl.js # GET /api/defi/tvl (paid, $0.005)
defi-price.js # GET /api/defi/price
defi-tvl-chain.js # GET /api/defi/tvl-chain
defi-protocols.js # GET /api/defi/protocols
defi-yields.js # GET /api/defi/yields
defi-stablecoins.js # GET /api/defi/stablecoins
price-eth-usd.js # GET /api/price/eth-usd
price-btc-usd.js # GET /api/price/btc-usd
price-sol-usd.js # GET /api/price/sol-usd
price-usdc-supply.js # GET /api/price/usdc-supply
chain-gas.js # GET /api/chain/gas
chain-block.js # GET /api/chain/block
gas-base.js # GET /api/gas/base
gas-ethereum.js # GET /api/gas/ethereum
web-read.js # POST /api/web/read
web-extract.js # POST /api/web/extract
fx-rates.js # GET /api/fx/rates
github-repo.js # GET /api/github/repo
npm-package.js # GET /api/npm/package
hn-top.js # GET /api/hn/top
wiki-summary.js # GET /api/wiki/summary
dns-lookup.js # GET /api/dns/lookup
rdap-domain.js # GET /api/rdap/domain
ai-summarize.js # POST /api/ai/summarize
ai-extract.js # POST /api/ai/extract
ai-classify.js # POST /api/ai/classify
ai-translate.js # POST /api/ai/translate
scripts/
generate-buyer-wallet.js # generates BUYER_PRIVATE_KEY (viem) + prints the address
buyer-test.js # buyer client: receives the 402, pays, prints the response (path/method/body configurable)
check-bazaar.js # npm run bazaar — queries the CDP facilitator's Bazaar discovery
importer-cle-cdp.js # npm run cle — imports the CDP key into .env without ever printing it
render.yaml # Render deployment blueprint (Node web service)
logs/paiements.jsonl # successful-payment log (gitignored, created on the first payment)
logs/sondages.jsonl # 402-response log (gitignored, created on the first probe)
.env / .env.example # configuration (.env is never committed)
Adding an endpoint
Create endpoints/my-endpoint.js:
export const path = "/api/my-endpoint";
export const method = "GET"; // optional, defaults to GET
export const price = "$0.01"; // null => free
export const description = "What this endpoint does.";
export async function handler(req, res) {
res.json({ hello: "world" });
}
It is loaded automatically at startup. An optional discovery export (via
declareDiscoveryExtension from @x402/extensions/bazaar) describes the
input parameters and an example output — see endpoints/defi-tvl.js.
Write description and discovery in English, phrased around the search
terms an agent would actually type (e.g. "ETH price USD", "summarize
text") — that's what buyer agents match against in the Bazaar and in
/.well-known/x402.json.
Configuration (.env)
| Variable | Role |
|---|---|
NETWORK | base-sepolia (test, default) or base (production) |
BASE_URL | This server's public URL, announced to agents (Bazaar, .well-known/x402.json). Never localhost in production. Empty locally → auto falls back to http://localhost:PORT |
PAY_TO_ADDRESS | EVM address that receives the USDC |
CDP_API_KEY_ID / CDP_API_KEY_SECRET | CDP keys — required only if NETWORK=base |
BUYER_PRIVATE_KEY | Test buyer wallet's private key — never set server-side in production (see render.yaml) |
ANTHROPIC_API_KEY | Required for /api/ai/* and /api/web/extract (Claude Haiku 4.5) — without it, these endpoints return a clean 500 error explaining the missing key |
GITHUB_TOKEN | Optional — raises the GitHub rate limit (60/h → 5000/h) for /api/github/repo. No scope required (public repo data) |
PORT | Server port — provided automatically by Render in production, 4021 locally |
Importing the CDP key (npm run cle)
To go to production without copy-pasting CDP_API_KEY_ID/CDP_API_KEY_SECRET
into .env by hand:
npm run cle
- 1st run: creates
CLE_API_CDP.txtat the repo root (a template with 2 fields to fill in) and opens it in TextEdit. Paste the Key ID (one line) and the Secret (can be a multi-line PEM block), save. - 2nd run (
npm run cleagain): reads the file, writesCDP_API_KEY_ID/CDP_API_KEY_SECRETinto.env(the multi-line secret is stored quoted with literal\ns —dotenvconverts them back to real newlines on load), switchesNETWORK=base, deletesCLE_API_CDP.txt, and adds it to.gitignore. The secret is never printed, only its size (number of lines) is confirmed.
Facilitators:
- base-sepolia → public test facilitator
https://x402.org/facilitator, no key. - base → the CDP facilitator (Coinbase Developer Platform), authenticated with
CDP_API_KEY_ID/CDP_API_KEY_SECRET(create keys at https://portal.cdp.coinbase.com).
Quickstart (testnet)
npm install
npm start # starts the server on port 4021
# In another terminal:
npm run generate-buyer-wallet # generates BUYER_PRIVATE_KEY + prints the address
# Fund the address with test USDC: https://faucet.circle.com (Base Sepolia)
npm run buyer-test # pays $0.005 on /api/defi/tvl and prints the response + tx hash
Test another endpoint (path, method, and body configurable):
ENDPOINT_PATH="/api/defi/price?coins=bitcoin" npm run buyer-test
ENDPOINT_PATH="/api/ai/summarize" METHOD=POST \
BODY='{"text":"Long article...","max_sentences":1}' npm run buyer-test
ENDPOINT_PATH="/api/web/read" METHOD=POST \
BODY='{"url":"https://en.wikipedia.org/wiki/HTTP_402"}' npm run buyer-test
Check manually:
curl http://localhost:4021/health # {"ok":true}
curl http://localhost:4021/stats # usage stats, free
curl -i "http://localhost:4021/api/defi/tvl?protocol=aave" # 402 Payment Required
Discovery for agents (Bazaar + .well-known/x402.json)
The Bazaar is the official x402 discovery index (docs.x402.org): it
lives on the facilitator side (GET {facilitator}/discovery/resources),
fed by each route's metadata via @x402/extensions/bazaar. This server's
routes declare that metadata (input schema + example output); on mainnet,
behind the CDP facilitator, they can be indexed and discovered by third-party
agents through that endpoint (no key required to read it).
In addition, GET /.well-known/x402.json lists, server-side, every paid
endpoint directly (absolute URL via BASE_URL, method, description, price,
network, payTo, input/output schema). There is no single official schema
for this file: this document follows the envelope from the IETF draft
"Discovering x402 Payment Capability via DNS and a Well-Known URI"
(x402Version, kind: "resource-server", resources[], docs, updated)
and enriches each resource with the same accepts/extensions.bazaar
fields already used in this server's real 402 responses — see
discovery.js for the detail and its sources.
curl https://x402-seller.onrender.com/.well-known/x402.json
To check what the CDP facilitator has indexed from this server (mainnet only):
npm run bazaar
Rate limiting and logging
- Rate limit: 60 requests/minute per IP on all
/api/*routes (express-rate-limit). Beyond that, a429response with a clear message..well-known,/health, and/statsare not rate-limited. - Payment log: every successfully settled payment writes a JSON line to
logs/paiements.jsonl(date,endpoint,payer,montant,hash— only data that's already public on-chain, never a secret or signed payment payload). Directory gitignored, created on the first payment. - Probe log: every
402 Payment Requiredresponse actually served writes a JSON line tologs/sondages.jsonl(date,endpoint, a truncated IP — last octet/group zeroed, never the exact client address — anduser_agent). Same append-only jsonl discipline as the payment log; seesondage-log.js. GET /stats(free): aggregates both logs into 402-probe and successful-payment counts per endpoint, over the last 24h and 7d. Contains no sensitive data (no IPs, payer addresses, or transaction hashes) — seelib/stats.js.
Deploying to Render
The provided render.yaml describes a Node web service (free plan):
- On https://dashboard.render.com → New → Blueprint → connect this
GitHub repo. Render reads
render.yamlautomatically. - Fill in the requested environment variables (
sync: falsein the blueprint = entered by hand, never committed):NETWORK,PAY_TO_ADDRESS,CDP_API_KEY_ID,CDP_API_KEY_SECRET,BASE_URL,ANTHROPIC_API_KEY. BASE_URLmust be the service's Render URL (e.g.https://x402-seller.onrender.com) — never localhost.BUYER_PRIVATE_KEYis never set server-side: it's a test buyer key, unrelated to the service that sells endpoints.- Render provides
PORTautomatically; the server already listens onprocess.env.PORTand0.0.0.0(server.js), andhealthCheckPath: /healthis already configured inrender.yaml.
Going to production (Base mainnet)
- Create a secret API key at https://portal.cdp.coinbase.com and fill in
CDP_API_KEY_ID/CDP_API_KEY_SECRETin.env(or vianpm run cle). - Set
NETWORK=basein.env,BASE_URLto the real public domain, then restart. - Payments arrive as real USDC at
PAY_TO_ADDRESS.
Reference docs
- Protocol and quickstarts: https://x402.gitbook.io/x402
- CDP facilitator and Bazaar: https://docs.cdp.coinbase.com/x402
- Bazaar (discovery layer): https://docs.x402.org/extensions/bazaar
- IETF
.well-knowndraft: https://datatracker.ietf.org/doc/html/draft-hawkins-x402-dns-discovery-01 - Render blueprint: https://render.com/docs/blueprint-spec
Reviews
No reviews yet
Be the first to review this server!
More Developer Tools MCP Servers
Fetch
Freeby Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
Git
Freeby Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
Toleno
Freeby Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
mcp-creator-python
Freeby mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.
MCP Marketplace
Freeby mcp-marketplace · Developer Tools
Search and install MCP servers from inside your AI client.
MarkItDown
Freeby Microsoft · Content & Media
Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption
