Server data from the Official MCP Registry
x402-gated web parser: URLs to token-efficient Markdown for LLM agents. Paid in USDC on Base.
x402-gated web parser: URLs to token-efficient Markdown for LLM agents. Paid in USDC on Base.
Remote endpoints: streamable-http: https://nodeproxy-production.up.railway.app/mcp
NodeProxy is a well-structured MCP server with thoughtful x402 payment authentication gating legitimate tool access. The codebase demonstrates good security fundamentals: proper URL validation, rate limiting, concurrency controls, and payment verification. However, several moderate-severity findings reduce confidence: the proof-of-payment deduplication uses an unbounded in-memory Set that could leak memory under attack, the Python client stores the private key in instance variables without zeroing, and error handling in the HTTP layer could expose internal details. The permissions are appropriate for a web-fetching utility, and there are no signs of malicious intent or credential exfiltration. Supply chain analysis found 14 known vulnerabilities in dependencies (0 critical, 5 high severity). Package verification found 1 issue.
8 files analyzed · 22 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Available as Local & Remote
This plugin can run on your machine or connect to a hosted endpoint. during install.
From the project's GitHub README.
Self-discoverable MCP utility for autonomous agents — no ads, no landing page, no human in the loop.
NodeProxy exposes surface_markdown_parser: a micro-service that fetches any public URL, strips scripts/ads/nav noise, and returns compressed Markdown optimized for LLM context windows. Every call is gated by x402 v2 USDC payments on Base.
Agents find this tool through MCP registries, x402 Bazaar discovery, and machine-readable manifests — not marketing.
Heavy React/Vue sites burn tokens when agents ingest raw HTML. NodeProxy returns clean Markdown so autonomous retrieval loops stay cheap and accurate.
Autonomous Agent
│ search MCP registry / Bazaar (vector or keyword)
▼
GET /mcp/tools or MCP list_tools
│ reads JSON schema ("Machine UI")
▼
POST /mcp/execute or tools/call surface_markdown_parser
│ no PAYMENT-SIGNATURE → 402 + PAYMENT-REQUIRED
│ with signature → facilitator verify/settle → parse URL
▼
Markdown payload → agent continues task
cd NodeProxy
cp .env.example .env
# Set WALLET_ADDRESS to your Base wallet
npm install
npm run dev
Endpoints (replace host with your deploy URL):
| Endpoint | Purpose |
|---|---|
GET /mcp/tools | Tool catalog for registry crawlers |
POST /mcp/execute | HTTP execution + x402 gate |
ALL /mcp | Streamable HTTP MCP transport |
GET /.well-known/mcp.json | Well-known discovery |
GET /registry/server.json | Submit this URL to MCP Registry |
| Variable | Default | Description |
|---|---|---|
WALLET_ADDRESS | — | USDC recipient (your revenue) |
PRICE_USDC | 0.002 | Price per successful parse |
X402_NETWORK | eip155:84532 | Use eip155:8453 for Base mainnet |
FACILITATOR_URL | https://x402.org/facilitator | x402 facilitator |
PUBLIC_URL | localhost | Used in discovery manifests |
registry/server.json with your live URL./discovery/resources (Bazaar docs)./.well-known/mcp.json.The tool description is written for LLM tool-matching, not humans:
"Executes fetch on any public URL, strips scripts/ads/nav noise, and returns compressed semantic Markdown optimized for LLM token ingestion."
npm run mcp:stdio
Add to Claude Desktop config:
{
"mcpServers": {
"nodeproxy": {
"command": "node",
"args": ["--import", "tsx", "/path/to/NodeProxy/src/mcp/stdio.ts"],
"env": { "WALLET_ADDRESS": "0x..." }
}
}
}
# Stage A — get 402 challenge
curl -i "http://localhost:4022/mcp/execute" \
-H 'Content-Type: application/json' \
-d '{"tool":"surface_markdown_parser","arguments":{"url":"https://example.com"}}'
# Stage B — retry with PAYMENT-SIGNATURE from x402 client wallet
curl "http://localhost:4022/mcp/execute" \
-H 'Content-Type: application/json' \
-H 'PAYMENT-SIGNATURE: <base64>' \
-d '{"tool":"surface_markdown_parser","arguments":{"url":"https://example.com"}}'
Use @x402/fetch or @x402/mcp client wrappers for automatic payment.
Railway is the recommended host for this parser: full Node.js (JSDOM works), no 15s serverless timeout, metered billing when idle.
cd NodeProxy
git init && git add . && git commit -m "NodeProxy MCP x402 parser"
git remote add origin https://github.com/YOU/nodeproxy.git
git push -u origin main
railway.toml + nixpacks.toml automatically*.up.railway.app)In Railway → Variables:
| Variable | Value |
|---|---|
WALLET_ADDRESS | Your Base wallet (USDC recipient) |
X402_NETWORK | eip155:8453 |
PRICE_USDC | 0.002 |
FACILITATOR_URL | https://x402.org/facilitator |
HOST | 0.0.0.0 |
MAX_CONCURRENT_PARSES | 20 |
RATE_LIMIT_PER_MINUTE | 120 |
You do not need to set PORT or PUBLIC_URL — Railway injects PORT, and the app auto-detects RAILWAY_PUBLIC_DOMAIN for discovery manifests.
curl https://YOUR-APP.up.railway.app/health
curl https://YOUR-APP.up.railway.app/mcp/tools
Update registry/server.json with your Railway URL, then PR to the MCP Registry. Agents hit:
https://YOUR-APP.up.railway.app/mcp/toolshttps://YOUR-APP.up.railway.app/.well-known/mcp.jsonRailway’s free tier gives $1/month credit after trial — enough for low traffic ($0.30–0.50/mo idle). One paid agent call at $0.002 USDC covers that. Scale to Hobby ($5/mo) when bot traffic grows.
Do not use Vercel/Cloudflare Workers for this service — JSDOM and 25s fetch timeouts exceed edge limits.
X402_NETWORK=eip155:8453
WALLET_ADDRESS=0xYourWallet
PRICE_USDC=0.002
USDC on Base: 0x833589fcd6edb6e08f4c7c32d4f71b54bda02913
To get NodeProxy baked into LangChain, CrewAI, and MCP registry discovery (instead of hoping agents find your URL), see:
integrations/python/ — nodeproxy-tools PyPI package + LangChain/CrewAI wrappersintegrations/typescript/ — @nodeproxy/langchain npm packageintegrations/mcp-registry/ — MCP registry PR templateQuick LangChain example:
pip install "nodeproxy-tools[x402,langchain]"
export EVM_PRIVATE_KEY=0x...
from nodeproxy_tools.langchain import NodeProxyMarkdownTool
tool = NodeProxyMarkdownTool()
markdown = tool.invoke({"url": "https://example.com"})
NodeProxy is registry-ready: boring, predictable, and reads as infrastructure. The paid tool name remains surface_markdown_parser so semantic search hits match intent.
MIT
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.