Token Safety for FinRobot
Proposal
FinRobot agents that interact with DeFi/crypto markets need safety checks before executing trades or analyzing tokens. SafeAgent provides this as a simple API call or MCP server integration.
What SafeAgent provides
- Safety score (0-100) for any ERC-20 token across 6 EVM chains
- 27 scam pattern detection: honeypots, hidden mints, ownership exploits, fee traps
- Real honeypot simulation via actual DEX swap testing
- DeFi yields, gas prices, token price data
Integration
# Direct API — no dependencies needed
import requests
r = requests.get("https://cryptogenesis.duckdns.org/scan",
params={"address": "0x...", "chain": "base"})
safety = r.json()
# Returns: safety_score (0-100), verdict, flags, risk breakdown
Use case
Before FinRobot executes a DeFi trade:
- Check token safety score
- If score < 80, flag as risky
- If honeypot detected, block the trade entirely
Links
Token Safety for FinRobot
Proposal
FinRobot agents that interact with DeFi/crypto markets need safety checks before executing trades or analyzing tokens. SafeAgent provides this as a simple API call or MCP server integration.
What SafeAgent provides
Integration
Use case
Before FinRobot executes a DeFi trade:
Links
POST https://cryptogenesis.duckdns.org/mcp(38 tools)