{
  "markdown": "# BotIndex MCP Server\n\n> 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](https://x402.org). No API keys. Every response carries a cryptographically signed [Agent Action Receipt (AAR)](https://aar.botindex.dev).\n\n**Live API:** [king-backend.fly.dev](https://king-backend.fly.dev/api/botindex/v1/)\n\n---\n\n## Try It Now\n\n```bash\n# Run the MCP server\nnpx botindex-mcp-server\n\n# Or test the API directly (free endpoints)\ncurl https://king-backend.fly.dev/api/botindex/v1/\ncurl https://king-backend.fly.dev/api/botindex/zora/trending-coins\ncurl https://king-backend.fly.dev/api/botindex/hyperliquid/funding-arb\n```\n\n---\n\n## Install\n\n```bash\nnpm install botindex-mcp-server\n```\n\n### Claude Desktop\n\nAdd to `~/Library/Application Support/Claude/claude_desktop_config.json`:\n\n```json\n{\n  \"mcpServers\": {\n    \"botindex\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"botindex-mcp-server\"]\n    }\n  }\n}\n```\n\n### Cursor\n\nAdd to `.cursor/mcp.json`:\n\n```json\n{\n  \"mcpServers\": {\n    \"botindex\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"botindex-mcp-server\"]\n    }\n  }\n}\n```\n\n### Windsurf / Cline / Continue.dev\n\nSame pattern — point your MCP config at `npx botindex-mcp-server`.\n\n---\n\n## 17 Tools\n\n### Sports Intelligence\n| Tool | Description | Price |\n|------|-------------|-------|\n| `botindex_sports_odds` | Live odds across NFL, NBA, UFC, NHL | $0.02 |\n| `botindex_sports_lines` | Line movements + sharp action flags | $0.02 |\n| `botindex_sports_props` | Player prop bets with confidence | $0.02 |\n| `botindex_sports_correlations` | Player correlation matrix for DFS | $0.05 |\n| `botindex_sports_optimizer` | Correlation-adjusted DFS lineup optimizer | $0.10 |\n| `botindex_sports_arb` | Cross-platform arbitrage scanner | $0.05 |\n\n### Crypto & Token Launches\n| Tool | Description | Price |\n|------|-------------|-------|\n| `botindex_crypto_tokens` | Token universe with price data | $0.02 |\n| `botindex_crypto_graduating` | Catapult→Hyperliquid graduation signals | $0.02 |\n| `botindex_solana_launches` | Metaplex Genesis token launches | $0.02 |\n| `botindex_solana_active` | Active Genesis launches only | $0.02 |\n| `botindex_correlation_leaders` | Top correlated/anti-correlated pairs | $0.05 |\n\n### Agentic Commerce\n| Tool | Description | Price |\n|------|-------------|-------|\n| `botindex_commerce_compare` | Compare ACP vs UCP vs x402 protocols | $0.05 |\n| `botindex_commerce_protocols` | Protocol directory with fees | $0.01 |\n\n### Premium Analytics\n| Tool | Description | Price |\n|------|-------------|-------|\n| `botindex_dashboard` | Correlation matrix, leaders, fear/greed | $0.50 |\n| `botindex_signals` | Aggregated prediction market signals | $0.10 |\n| `botindex_agent_trace` | Agent reasoning trace | $0.05 |\n| `botindex_discover` | Full endpoint catalog (FREE) | Free |\n\n---\n\n## How Payment Works\n\nBotIndex uses [x402](https://github.com/coinbase/x402) — the HTTP 402 Payment Required protocol by Coinbase.\n\n```\nYour Agent → calls botindex tool\nMCP Server → GET king-backend.fly.dev/api/botindex/v1/sports/odds\n           ← 402 + payment instructions (amount, wallet, network)\n           → pays USDC on Base via x402\n           ← 200 + data\n```\n\nNo API keys. No signup. No rate limit tiers. Your wallet is your identity.\n\n### Free Trial\n\nEvery 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.\n\nTo enable automatic payments after trial, configure your agent with a funded Base wallet and the [@x402/client](https://www.npmjs.com/package/@x402/client) SDK.\n\n---\n\n## Free Endpoints (No Payment)\n\nThese work out of the box — no wallet needed:\n\n- `botindex_discover` — full endpoint catalog with pricing\n- Zora trending coins (via API: `/api/botindex/zora/trending-coins`)\n- Hyperliquid funding arb (via API: `/api/botindex/hyperliquid/funding-arb`)\n\n---\n\n## Free vs Pro\n\n- **Free key:** 100 requests/day on free endpoints. Premium endpoints return an upgrade/payment prompt.\n- **Pro key ($29/mo):** Unlimited access to all endpoints with no x402 payment gates.\n\nUpgrade link: https://api.botindex.dev/api/botindex/keys/register?plan=pro\n\n---\n\n## Verifiable Agent Actions (AAR)\n\nEvery 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.\n\n- **Verify any receipt independently** — no trusted intermediary needed\n- **Privacy-preserving** — inputs/outputs are SHA-256 hashed, not exposed\n- **Compatible with [Mastercard Verifiable Intent](https://www.mastercard.com/us/en/news-and-trends/stories/2026/verifiable-intent.html)** — bidirectional mapping\n- **Aztec ZK-compatible** — verify on-chain without revealing contents\n\n```bash\nnpm install botindex-aar\n```\n\n```ts\nimport { verifyReceipt } from 'botindex-aar';\nconst result = verifyReceipt(receipt);\n// { ok: true } — receipt is valid and untampered\n```\n\n- **AAR Spec:** [github.com/Cyberweasel777/agent-action-receipt-spec](https://github.com/Cyberweasel777/agent-action-receipt-spec)\n- **Landing:** [aar.botindex.dev](https://aar.botindex.dev)\n- **npm:** [botindex-aar](https://www.npmjs.com/package/botindex-aar)\n\n---\n\n## Links\n\n- **API:** [king-backend.fly.dev/api/botindex/v1/](https://king-backend.fly.dev/api/botindex/v1/)\n- **Agent Discovery:** [/.well-known/ai-plugin.json](https://king-backend.fly.dev/.well-known/ai-plugin.json)\n- **AAR Trust Layer:** [aar.botindex.dev](https://aar.botindex.dev)\n- **x402 Protocol:** [github.com/coinbase/x402](https://github.com/coinbase/x402)\n- **Source:** [github.com/Cyberweasel777/king-backend](https://github.com/Cyberweasel777/king-backend)\n\n---\n\n## License\n\nMIT\n",
  "bytes": 5910,
  "sha": "b24c3bc584cef74beb1163da77c364a0687fb93ec107acd0a987eea7b10f9a03",
  "repo_slug": "cyberweasel777/botindex-mcp-server",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_io_github_cyberweasel777_botindex_mcp_se_f29351e8/readme"
}