Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"cinderwright": {
"env": {
"CW_KEY": "sk_cw_your_key_here"
},
"args": [
"-y",
"cinderwright-mcp-server"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
1,551 services across x402 (Coinbase) + MPP (Stripe/Tempo) + L402 (Lightning) — 32 endpoints
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'cinderwright' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked cinderwright against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in search / ai-ml
Dynamic problem-solving through sequential thought chains
Persistent memory using a knowledge graph
Web and local search using Brave Search API
Production ready MCP server with real-time search, extract, map & crawl.
MCP Security Weekly
Get CVE alerts and security updates for io.github.cinderwright-ai/cinderwright-api and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
June 9, 2026: Both bridge directions confirmed on mainnet.
npx cinderwright "Bitcoin price"x402 + L402 (Lightning) interoperable. First confirmed cross-protocol agent payment June 2026.
An AI agent with a USDC balance can now call any Lightning-gated (L402) service. We detect the protocol, route the payment, and return the data. The agent never knows which protocol settled.
# One endpoint. Any protocol. 2,811 services.
curl -X POST https://api.ideafactorylab.org/proxy/do \
-H "X-CW-Key: sk_cw_your_key" \
-d '{"task": "get weather in Tokyo"}'
| Protocol | Services | Status |
|---|---|---|
| x402 (USDC on Base) | 1,503 | Live |
| L402 (Bitcoin Lightning) | 1,185 | Live |
| MPP (Stripe/Tempo) | 92 | Coming soon |
Lightning status: https://api.ideafactorylab.org/lightning-status
/proxy/doThe agent never manages wallets, signs transactions, or knows which protocol ran.
# Get a proxy account
curl -X POST https://api.ideafactorylab.org/proxy/setup \
-d '{"wallet": "0xYourBaseWallet"}'
# Deposit USDC on Base to the returned address
# Call any service
curl -X POST https://api.ideafactorylab.org/proxy/do \
-H "X-CW-Key: sk_cw_your_key" \
-d '{"task": "Bitcoin price now", "max_cost_usd": 0.10}'
npx cinderwright-mcp-server
Add to claude_desktop_config.json:
{
"mcpServers": {
"cinderwright": {
"command": "npx",
"args": ["-y", "cinderwright-mcp-server"],
"env": { "CW_KEY": "sk_cw_your_key_here" }
}
}
}
17 tools including proxy_do, proxy_setup, proxy_balance, and service discovery.
| Tool | What it does |
|---|---|
| /test | Live service tester |
| /debug | 16-check diagnostic engine with host pollution + scheme detection |
| /sandbox | Test EIP-3009 signing without spending USDC |
| /budget | Per-call caps and kill switch |
| /setup | Wallet setup wizard |
| /lightning-status | Lightning node status and outbound capacity |
| /onchain | On-chain settlement data via TomSmart mapper.db |
# Free search
curl "https://api.ideafactorylab.org/discover?q=weather"
curl "https://api.ideafactorylab.org/discover?q=bitcoin+price&protocol=l402"
# On-chain settlement data for any service
curl "https://api.ideafactorylab.org/onchain?endpoint=https://your-service.com/api"
# Submit your service
curl -X POST https://api.ideafactorylab.org/submit \
-d '{"url": "https://your-service.com"}'
The universal payment router sits between agents and services:
Agent (USDC balance)
|
v
POST /proxy/do {"task": "..."}
|
v
Cinderwright Router
|-- detect protocol from 402 response headers
|-- x402: sign USDC payment via EIP-3009
|-- L402: pay Lightning invoice via LND REST
|-- MPP: (coming soon)
|
... [View full README on GitHub](https://github.com/cinderwright-ai/cinderwright-api#readme)