This is an API marketplace where Claude can discover and pay for external data tools using USDC on Base, without needing API keys or manual setup. When Claude hits an endpoint, it gets a 402 Payment Required response with payment instructions, sends USDC on-chain, then retries with the transaction hash to get the data. It ships with ten crypto tools including DexScreener price feeds, GoPlus rug checkers, Li.Fi bridge routing, and DefiLlama yield data. Prices run from 0.0005 to 0.005 USDC per call. You can also publish your own APIs to the registry and collect payments. Currently on Base Sepolia testnet. Reach for this if you want Claude to autonomously fetch crypto market data and pay for it programmatically.
"The next unicorn is an API marketplace for agents... where the right API should be selected by Claude and connected automatically" — @auralix4
API marketplaces exist, but they're built for human developers. ToolFi is built for AI workflows — agents discover, select, and pay for APIs automatically, without human intervention.
🌐 Website · 📡 API · 📜 Contract · 🗺️ Roadmap
AI agents need external data (prices, security checks, routes). Current solutions:
ToolFi = APIs that agents can discover and use autonomously.
.well-known/mcp.json, MCP registries, semantic searchAgent → GET /api/price?symbol=ETH
↓
Server → 402 Payment Required
{ toolId, price, paymentInstructions }
↓
Agent → USDC.approve() → Registry.payForCall(toolId)
↓
Agent → Retry with X-Payment-Tx header
↓
Server → Verify on-chain → Return data
| Tool | Price | What it does |
|---|---|---|
| Crypto Price Oracle | 0.001 USDC | Real-time prices via DexScreener |
| Rug Pull Scanner | 0.003 USDC | Token security via GoPlus |
| Bridge Router | 0.002 USDC | Cross-chain routes via Li.Fi |
| DeFi Yield Finder | 0.002 USDC | Best yields via DefiLlama |
| Swap Router | 0.002 USDC | DEX aggregation via Li.Fi |
| Trending Coins | 0.001 USDC | What's hot via CoinGecko |
| Protocol TVL | 0.001 USDC | DeFi TVL data via DefiLlama |
| Gas Tracker | 0.0005 USDC | Gas prices for EVM chains |
| Wallet Risk Scanner | 0.005 USDC | Address risk analysis |
| News Digest | 0.002 USDC | Crypto news summary |
# Pay on-chain, then call with payment proof
curl -H "X-Payment-Tx: 0x..." "https://toolfi.vercel.app/api/price?symbol=ETH"
cd mcp-server
uv venv && source .venv/bin/activate
uv pip install -e .
Add to Claude Desktop config:
{
"mcpServers": {
"toolfi": {
"command": "/path/to/.venv/bin/python",
"args": ["-m", "src.server"],
"cwd": "/path/to/mcp-server"
}
}
}
Then ask Claude: "Check the security of token 0x... on Base"
Publish your API and earn USDC:
cast send $REGISTRY \
"registerTool(string,string,string,uint256)" \
"My Tool" "https://api.example.com" "Description" 10000 \
--rpc-url https://sepolia.base.org --private-key $KEY
Price in 6 decimals: 10000 = $0.01/call
Withdraw earnings:
cast send $REGISTRY "withdraw()" --rpc-url https://sepolia.base.org
| Chain | Base Sepolia (84532) |
| USDC | 0x036CbD53842c5426634e7929541eC2318f3dCF7e |
| Registry | 0x3D6C600799C67b45061eCAbfD5bBF8ef57Dded88 |
toolfi/
├── api/ # Vercel serverless API
├── web/ # Next.js frontend
├── mcp-server/ # Python MCP server for Claude
├── src/ # Solidity contracts
├── skill/ # OpenClaw skill spec
└── script/ # Deployment scripts
# Contracts
forge build
forge test -v
# API
cd api && npm install && npm start
# MCP Server
cd mcp-server && uv pip install -e . && python -m src.server
MIT
com.mcparmory/google-sheets
domdomegg/google-sheets-mcp
henilcalagiya/google-sheets-mcp
cct15/war-dashboard-data
moooonad/mcp-google-sheets-full
io.github.br0ski777/csv-to-json