address-intel-api
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@address-intel-apicheck address 0x098b716b8aaf21512996dc57eb0615e2383e2f96"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Address Intel API
x402-powered paid API that returns counterparty risk checks for any EVM address: confirmed malicious-history flags, tiered risk scoring, and plain-language summaries.
Production: https://address-intel-api.tatsu77.workers.dev
Why
Agents (and humans) transact with addresses they've never seen. This API answers "is it safe to pay this address?" in one call, priced for machine consumption ($0.005 USDC via x402). Data: GoPlus Security address_security (sources include SlowMist, BlockSec).
Related MCP server: Black_Wall remote MCP
API
GET /api/v1/address/{address}?chainId={optional}
Payment: $0.005 USDC via x402 v2 on Base mainnet. Sign the requirements from the 402 response's PAYMENT-REQUIRED header and retry with the PAYMENT-SIGNATURE header. A wallet that paid can re-read the same address check free for 1 hour via SIGN-IN-WITH-X (matches the cache TTL, so sessions only re-serve data the wallet already bought).
Parameter | Description |
| EVM address ( |
| Optional query param to scope the lookup (e.g. |
Response (200):
{
"address": "0x098b716b8aaf21512996dc57eb0615e2383e2f96",
"chain_id": null,
"is_contract": false,
"risk_score": 0,
"risk_level": "CRITICAL",
"flags": { "sanctioned": true, "stealing_attack": true, "...": "18 signals total" },
"adverse_findings": ["Sanctioned address", "Involved in stealing attacks"],
"summary": "CRITICAL risk. This address has confirmed malicious history — do not transact. ...",
"data_source": "SlowMist,BlockSec",
"cached": false,
"data_age_seconds": 0
}Risk levels (tiered, not deduction-based — one confirmed malicious flag is disqualifying):
Level | Trigger | Meaning |
| Any confirmed malicious-history flag: sanctioned, stealing, phishing, blackmail, cybercrime, laundering, financial crime, darkweb | Do not transact |
| Strong adverse indicators: honeypot ties, fake tokens/KYC/interface, gas abuse, malicious contracts created | Avoid |
| Suspicion, not confirmation: mixer use, suspected blacklists, reinit | Verify counterparty first |
| No adverse records | Not a safety guarantee — fresh scam addresses have clean histories |
Errors: 400 invalid input / 402 payment required / 404 no data / 429 upstream throttled / 503 upstream down. Failed requests are never charged (payment cancels instead of settling).
MCP: POST /mcp (streamable HTTP)
Paid tool check_address ($0.005) with in-protocol x402 payment — x402-aware MCP clients (@x402/mcp) pay automatically via params._meta["x402/payment"]. initialize and tools/list are free.
Free discovery
GET /.well-known/x402 (2 resources: http + mcp) / GET /openapi.json / GET /llms.txt / GET /health
Development
npm install
npm run dev # local dev (uses .dev.vars)
npm run typecheck
npx wrangler deploy --env production # mainnet (requires secrets below)Environment
Variable | Where | Description |
| Wrangler secret | EOA to receive USDC |
| Wrangler secret | GoPlus API key (optional; higher rate limits) |
| Wrangler secret (production) | Coinbase Developer Platform keys |
| wrangler.toml vars | Public origin for SIWx domain binding |
| wrangler.toml vars (optional) | SIWx re-read window, default 3600 |
Architecture
Cloudflare Workers (Hono)
├── x402 v2 Payment Middleware (@x402/hono, memoized per isolate)
├── Paid MCP tool (@x402/mcp createPaymentWrapper)
├── SIWx sessions (KV, 1h, nonce replay protection)
├── Bazaar Discovery (serviceName/tags + schemas, manifest = middleware)
├── Cache (Cloudflare KV, 1h TTL — address reputation moves slowly)
└── GoPlus address_security → tiered scoring → template summarySibling services sharing this architecture: token-intel-api (EVM token security), polymarket-scan-api (Polymarket liquidity anomalies).
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Solana address risk grades and token scans for AI agents. Pay-per-call via x402 (USDC on Base).
Free token-safety scans + paid x402 verdicts, signals, radar & EVM swap quotes for AI agents.
Free token-safety scans + paid x402 verdicts, signals, radar & EVM swap quotes for AI agents.
Pre-send EVM address checks: free pre-check, $0.01 check, $0.05 deep scan. x402: payment is auth.
Related MCP Servers
- AlicenseAqualityFmaintenanceCounterparty risk scoring for agentic commerce. Scores wallets, domains, IPs, and companies 0-100 before AI agents transact via x402 micropayments on Base128 PyPI3MIT
- FlicenseNot gradedqualityDmaintenanceProvides a pre-signature payment-risk verdict (GO/HOLD/STOP) for x402 payments based on counterparty reputation, price anomaly, and OFAC sanctions.-

WalletTriage MCPofficial
AlicenseAqualityCmaintenanceReal-time exploit-exposure check for EVM wallets with x402 USDC payments, no signup needed.254 npmMIT- AlicenseNot gradedqualityBmaintenanceChecks token contract safety for honeypot, tax, proxy, blacklist, ownership risks, and returns a risk score, enabling rug-pull protection for agents via pay-per-call x402 micropayments.MIT