This one plugs into DeFi signal feeds and sports betting data, exposing 17 tools for odds comparison, funding arbitrage on Hyperliquid, token graduations from Catapult, and whale activity tracking. It uses Coinbase's x402 protocol for pay-per-request USDC billing after 50 free calls per wallet. Every response includes a cryptographically signed Agent Action Receipt so you can verify what your agent requested and paid for. Useful if you're building agents that trade on market signals, scan for arbitrage, or need verifiable audit trails for agentic commerce. Free endpoints cover Zora trending coins and funding rate opportunities.
Public tool metadata for what this MCP can expose to an agent.
botindex_discoverList all available BotIndex tools and endpoints with pricing.List all available BotIndex tools and endpoints with pricing.
No parameter schema in public metadata yet.
botindex_hl_funding_arbGet Hyperliquid funding rate arbitrage opportunities ranked by annualized yield. FREEGet Hyperliquid funding rate arbitrage opportunities ranked by annualized yield. FREE
No parameter schema in public metadata yet.
botindex_signalsGet latest cross-market signals with bot attribution and confidence scores. FREE1 paramsGet latest cross-market signals with bot attribution and confidence scores. FREE
limitnumberbotindex_crypto_tokensGet token universe with prices, volumes, and market caps. FREEGet token universe with prices, volumes, and market caps. FREE
No parameter schema in public metadata yet.
botindex_correlation_leadersGet top correlated and anti-correlated crypto pairs. $0.02Get top correlated and anti-correlated crypto pairs. $0.02
No parameter schema in public metadata yet.
botindex_zora_trendingGet trending Zora coins ranked by 24h volume. FREE1 paramsGet trending Zora coins ranked by 24h volume. FREE
limitnumberbotindex_zora_momentumGet Zora coins with accelerating attention velocity. $0.021 paramsGet Zora coins with accelerating attention velocity. $0.02
limitnumberbotindex_zora_creatorsGet top Zora creators scored by market cap, volume, holders. $0.021 paramsGet top Zora creators scored by market cap, volume, holders. $0.02
limitnumberbotindex_doppler_launchesGet recent Doppler token launches on Base. $0.011 paramsGet recent Doppler token launches on Base. $0.01
limitnumberbotindex_zora_intelAI Zora market intelligence: risk scores, fair value, creator grades, BUY/WATCH/FADE. $0.05AI Zora market intelligence: risk scores, fair value, creator grades, BUY/WATCH/FADE. $0.05
No parameter schema in public metadata yet.
botindex_hl_intelAI funding rate intelligence: rate persistence, entry timing, risk-adjusted yield. $0.05AI funding rate intelligence: rate persistence, entry timing, risk-adjusted yield. $0.05
No parameter schema in public metadata yet.
botindex_crypto_intelAI crypto correlation intelligence: regime detection, alpha signals, portfolio risk. $0.05AI crypto correlation intelligence: regime detection, alpha signals, portfolio risk. $0.05
No parameter schema in public metadata yet.
botindex_doppler_intelAI Doppler launch intelligence: quality scores, rug probability, creator analysis. $0.05AI Doppler launch intelligence: quality scores, rug probability, creator analysis. $0.05
No parameter schema in public metadata yet.
Signal intelligence for AI agents — sports odds, crypto correlations, token graduations, and more. 50 free premium requests per wallet. Then pay per request with USDC via x402. No API keys. Every response carries a cryptographically signed Agent Action Receipt (AAR).
Live API: king-backend.fly.dev
# Run the MCP server
npx botindex-mcp-server
# Or test the API directly (free endpoints)
curl https://king-backend.fly.dev/api/botindex/v1/
curl https://king-backend.fly.dev/api/botindex/zora/trending-coins
curl https://king-backend.fly.dev/api/botindex/hyperliquid/funding-arb
npm install botindex-mcp-server
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"botindex": {
"command": "npx",
"args": ["-y", "botindex-mcp-server"]
}
}
}
Add to .cursor/mcp.json:
{
"mcpServers": {
"botindex": {
"command": "npx",
"args": ["-y", "botindex-mcp-server"]
}
}
}
Same pattern — point your MCP config at npx botindex-mcp-server.
| Tool | Description | Price |
|---|---|---|
botindex_sports_odds | Live odds across NFL, NBA, UFC, NHL | $0.02 |
botindex_sports_lines | Line movements + sharp action flags | $0.02 |
botindex_sports_props | Player prop bets with confidence | $0.02 |
botindex_sports_correlations | Player correlation matrix for DFS | $0.05 |
botindex_sports_optimizer | Correlation-adjusted DFS lineup optimizer | $0.10 |
botindex_sports_arb | Cross-platform arbitrage scanner | $0.05 |
| Tool | Description | Price |
|---|---|---|
botindex_crypto_tokens | Token universe with price data | $0.02 |
botindex_crypto_graduating | Catapult→Hyperliquid graduation signals | $0.02 |
botindex_solana_launches | Metaplex Genesis token launches | $0.02 |
botindex_solana_active | Active Genesis launches only | $0.02 |
botindex_correlation_leaders | Top correlated/anti-correlated pairs | $0.05 |
| Tool | Description | Price |
|---|---|---|
botindex_commerce_compare | Compare ACP vs UCP vs x402 protocols | $0.05 |
botindex_commerce_protocols | Protocol directory with fees | $0.01 |
| Tool | Description | Price |
|---|---|---|
botindex_dashboard | Correlation matrix, leaders, fear/greed | $0.50 |
botindex_signals | Aggregated prediction market signals | $0.10 |
botindex_agent_trace | Agent reasoning trace | $0.05 |
botindex_discover | Full endpoint catalog (FREE) | Free |
BotIndex uses x402 — the HTTP 402 Payment Required protocol by Coinbase.
Your Agent → calls botindex tool
MCP Server → GET king-backend.fly.dev/api/botindex/v1/sports/odds
← 402 + payment instructions (amount, wallet, network)
→ pays USDC on Base via x402
← 200 + data
No API keys. No signup. No rate limit tiers. Your wallet is your identity.
Every wallet gets 50 free premium requests. Just send an X-Wallet: 0x... header. The response includes X-BotIndex-Free-Remaining so you know exactly where you stand. After 50 requests, x402 payment kicks in automatically.
To enable automatic payments after trial, configure your agent with a funded Base wallet and the @x402/client SDK.
These work out of the box — no wallet needed:
botindex_discover — full endpoint catalog with pricing/api/botindex/zora/trending-coins)/api/botindex/hyperliquid/funding-arb)Upgrade link: https://api.botindex.dev/api/botindex/keys/register?plan=pro
Every BotIndex API response carries a signed Agent Action Receipt in the X-AAR-Receipt header — Ed25519-signed proof of what your agent requested, what was returned, and what it cost.
npm install botindex-aar
import { verifyReceipt } from 'botindex-aar';
const result = verifyReceipt(receipt);
// { ok: true } — receipt is valid and untampered
MIT
BOTINDEX_BASE_URLBase URL for BotIndex API (optional, defaults to https://api.botindex.dev)
io.github.ericm1018/skillfm-llm-cost-optimizer-openai-anthropic-usage
io.github.mikerawsonnz/llm-orchestration-agent
io.github.mikerawsonnz/authenticated-llm-agent
labforgedev/copilot-memory-mcp
csoai-org/agent-prompt-injection-firewall-mcp
io.github.mikerawsonnz/authenticated-multi-llm-agent