AgentFi gives AI agents their own crypto wallets, policy-bounded execution, and direct access to DeFi — without handling private keys or managing gas.
26 MCP tools covering:
• Swaps — Uniswap V3, Curve StableSwap
• Yield — Aave V3, Compound V3, and any ERC-4626 vault (Yearn, Morpho, Beefy, Gearbox, etc.)
• Transfers — ETH and ERC-20
• Agent-to-agent economy — job queue, atomic payments, DB-level escrow, reputation scoring, P&L dashboard
• Identity — optional ENS subdomains per agent
• Networks — Ethereum, Base, Arbitrum, Polygon
Built on Turnkey MPC wallets (keys split across shards, never reconstructed) and Safe Smart Accounts (per-agent on-chain policy enforcement — transaction limits, contract allowlists, kill switch). Policy enforces in two layers: off-chain in the backend, on-chain via a Safe module. Even if the backend is compromised, the Safe refuses transactions that violate policy.
Protocol fee collected atomically on-chain via AgentExecutor. Open-source (Apache 2.0), self-hosted by design.
Server Config
{
"mcpServers": {
"agentfi": {
"command": "npx",
"args": [
"-y",
"@agent_fi/mcp-server@0.2.0"
],
"env": {
"AGENTFI_API_URL": "<YOUR_BACKEND_URL>",
"AGENTFI_API_KEY": "<YOUR_AGENT_API_KEY>"
}
}
}
}