On-chain AI agent scoring DeFi protocol risk with live market data. Pay per query via x402 micropayments on Base.
| Protocol | TVL | Top Pool APY | Risk |
|---|---|---|---|
| Loading live data... | |||
Get a free risk level check for any supported protocol. No payment required.
MCP tool execution endpoint. Requires x402 payment header for paid tools.
{
"tool": "risk.score",
"input": {
"protocol": "aave",
"chain": "base",
"volatilityPct": 30,
"slippageBps": 50
}
}
Agent-to-Agent protocol endpoint. Send natural language prompts for risk analysis.
{
"jsonrpc": "2.0",
"method": "message/send",
"params": {
"message": {
"parts": [{ "type": "text", "text": "protocol=aave chain=base" }]
}
},
"id": 1
}
Portfolio risk analysis. Scores aggregate risk across multiple DeFi positions. Requires x402 payment ($0.25).
{
"tool": "portfolio.risk",
"input": {
"positions": [
{ "protocol": "aave", "chain": "base", "allocationPct": 50 },
{ "protocol": "aerodrome", "chain": "base", "allocationPct": 30 },
{ "protocol": "compound-finance", "chain": "ethereum", "allocationPct": 20 }
]
}
}
Depeg risk monitor. Assesses stablecoin/LST depeg risk using live pool data. Requires x402 payment ($0.20).
{
"tool": "depeg.monitor",
"input": { "asset": "USDC", "chain": "base" }
}
Free risk preview — no payment required. Returns risk level (LOW/MEDIUM/HIGH).
{
"tool": "risk.preview",
"input": { "protocol": "aave", "chain": "base" }
}
Subscribe to risk monitoring. Creates a persistent monitor with custom threshold. Requires x402 payment ($0.50).
{
"tool": "monitor.subscribe",
"input": {
"protocol": "aave",
"chain": "base",
"thresholdScore": 60,
"label": "Aave Base risk alert"
}
}
Check a monitor subscription. Returns current risk score vs threshold with alert flag. Requires x402 payment ($0.05).
{
"tool": "monitor.check",
"input": { "subscriptionId": "mon_abc123def456" }
}
Exposure map. Maps protocol dependency chain with live TVL enrichment. Requires x402 payment ($0.30).
{
"tool": "exposure.map",
"input": { "protocol": "morpho", "chain": "base" }
}
Smart contract audit score. Assesses contract risk posture for supported protocols. Requires x402 payment ($0.35).
{
"tool": "contract.audit",
"input": { "protocol": "aave", "chain": "base" }
}
Bundle purchase. Buy 25 prepaid risk.score calls at 20% discount. Requires x402 payment ($2.00).
{
"tool": "bundle.purchase",
"input": { "tool": "risk.score", "totalCredits": 25 }
}
// Then use the bundle:
// POST /mcp with header X-BUNDLE-ID: bnd_abc123
// { "tool": "risk.score", "input": { "protocol": "aave", "chain": "base" } }
Agent discovery card (ERC-8004 standard). Returns agent identity, skills, and endpoint.
Returns current tool pricing, accepted token, and payment network configuration.