hyperD is a pay-per-call DeFi API service for AI agents. Twenty production endpoints covering wallet risk, token security, liquidation health, portfolio P&L, DEX routing, governance summaries, sentiment, gas markets, multi-protocol TVL, and a bundle endpoint that combines up to 10 calls into a single $0.20 settlement.
How it works
The x402 protocol replaces traditional API authentication with a signed EIP-3009 USDC transfer authorization. An agent calls a hyperD endpoint normally; the server responds with HTTP 402 and machine-readable payment terms; the agent signs and retries; Coinbase's facilitator settles in roughly two seconds. The signature is the auth. There is no key store to rotate, no monthly minimum to negotiate, no sales form to fill.
Marquee endpoints
The five most-called actions, with prices:
- GET /api/risk/wallet ($0.10) — Chainalysis Sanctions Oracle + GoPlus heuristics
- GET /api/token/security ($0.05) — GoPlus 0–100 score, honeypot detection, owner permissions, holder concentration
- GET /api/liquidation/risk ($0.10) — Cross-protocol composite health factor across Aave V3, Compound v3, Spark, and Morpho. No other API combines all four.
- GET /api/wallet/pnl ($0.05) — Realized + unrealized P&L, per-token breakdown with mark-to-market
- GET /api/dex/quote ($0.02) — Best swap route aggregated across Paraswap + 0x
Full agent decision cycle (all five) is $0.32 in USDC.
Install
npx -y hyperd-mcp
Add to claude_desktop_config.json with a Base hot wallet holding USDC at HYPERD_WALLET_PRIVATE_KEY. ~$5 of USDC is plenty for hundreds of decision cycles. The MCP server exposes 23 tools after restart.
Links
- Production API: https://api.hyperd.ai
- Glama: https://glama.ai/mcp/servers/hyperd-ai/hyperd-mcp
- Smithery: https://smithery.ai/servers/hyperd/hyperd-mcp
- Source (MIT): https://github.com/hyperd-ai/hyperd-mcp
- x402 protocol: https://x402.org
Server Config
{
"mcpServers": {
"hyperd": {
"command": "npx",
"args": [
"-y",
"hyperd-mcp"
],
"env": {
"HYPERD_WALLET_PRIVATE_KEY": "0x..."
}
}
}
}