BotIndex MCP Server

Created By
Cyberweasel7773 months ago
AI-powered market intelligence API for agents. 23 MCP tools covering sports betting odds, crypto signals, Hyperliquid funding arb, Solana token tracking, social sentiment, and x402 micropayments. Cryptographic trust layer with Agent Action Receipts (AAR) and Session Continuity Certificates (SCC).
Overview

BotIndex MCP Server

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


Try It Now

# 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

Install

npm install botindex-mcp-server

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "botindex": {
      "command": "npx",
      "args": ["-y", "botindex-mcp-server"]
    }
  }
}

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "botindex": {
      "command": "npx",
      "args": ["-y", "botindex-mcp-server"]
    }
  }
}

Windsurf / Cline / Continue.dev

Same pattern — point your MCP config at npx botindex-mcp-server.


17 Tools

Sports Intelligence

ToolDescriptionPrice
botindex_sports_oddsLive odds across NFL, NBA, UFC, NHL$0.02
botindex_sports_linesLine movements + sharp action flags$0.02
botindex_sports_propsPlayer prop bets with confidence$0.02
botindex_sports_correlationsPlayer correlation matrix for DFS$0.05
botindex_sports_optimizerCorrelation-adjusted DFS lineup optimizer$0.10
botindex_sports_arbCross-platform arbitrage scanner$0.05

Crypto & Token Launches

ToolDescriptionPrice
botindex_crypto_tokensToken universe with price data$0.02
botindex_crypto_graduatingCatapult→Hyperliquid graduation signals$0.02
botindex_solana_launchesMetaplex Genesis token launches$0.02
botindex_solana_activeActive Genesis launches only$0.02
botindex_correlation_leadersTop correlated/anti-correlated pairs$0.05

Agentic Commerce

ToolDescriptionPrice
botindex_commerce_compareCompare ACP vs UCP vs x402 protocols$0.05
botindex_commerce_protocolsProtocol directory with fees$0.01

Premium Analytics

ToolDescriptionPrice
botindex_dashboardCorrelation matrix, leaders, fear/greed$0.50
botindex_signalsAggregated prediction market signals$0.10
botindex_agent_traceAgent reasoning trace$0.05
botindex_discoverFull endpoint catalog (FREE)Free

How Payment Works

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.

Free Trial

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.


Free Endpoints (No Payment)

These work out of the box — no wallet needed:

  • botindex_discover — full endpoint catalog with pricing
  • Zora trending coins (via API: /api/botindex/zora/trending-coins)
  • Hyperliquid funding arb (via API: /api/botindex/hyperliquid/funding-arb)

Verifiable Agent Actions (AAR)

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.

  • Verify any receipt independently — no trusted intermediary needed
  • Privacy-preserving — inputs/outputs are SHA-256 hashed, not exposed
  • Compatible with Mastercard Verifiable Intent — bidirectional mapping
  • Aztec ZK-compatible — verify on-chain without revealing contents
npm install botindex-aar
import { verifyReceipt } from 'botindex-aar';
const result = verifyReceipt(receipt);
// { ok: true } — receipt is valid and untampered


License

MIT

Project Info
Created At
3 months ago
Updated At
3 months ago
Author Name
Cyberweasel777
Star
-
Language
-
License
-
Category

Recommend Servers

View All
Tavily Mcp
@tavily-ai

JavaScript
a year ago
Bring your real authenticated browser session to AI coding agents. Local-first MCP server + Chrome MV3 extension. No cloud. No telemetry.
@Cubenest

peek records the user's actual logged-in browser (DOM via rrweb, console events, network metadata, optional response bodies via opt-in Deep capture) through a Chrome MV3 extension. The extension ships events through a native-messaging stdio bridge to a local MCP server (peek-mcp), which persists them to a SQLite database at ~/.peek/sessions.db. AI coding agents (Claude Code, Cursor, Cline, Windsurf) read sessions from the database via 10 MCP tools: Tool What it does list_recent_sessions List recently recorded sessions (id, origin, ts, event count). get_session_summary LLM-readable narrative summary of a session. get_session_console_errors Console errors recorded in a session. get_session_network_errors Failed/notable network requests in a session. get_user_action_before_error Last N user actions before a console error. generate_playwright_repro Generate a runnable Playwright test from a session. get_dom_snapshot Reconstruct the DOM at a given timestamp. query_dom_history Timeline of attribute/text changes for a selector. request_authorization Side-panel consent for write actions (Level 3). execute_action Dispatch a UI action (gated by permission level + destructive blocklist). Why local-first matters Every other "browser session for AI" tool ships to a vendor cloud. peek's SQLite + extension live on the user's machine — no remote endpoints, no telemetry. The privacy policy (docs/peek/PRIVACY_POLICY.md) is the source of truth. Install # 1. Add the MCP server to Claude Code claude mcp add peek -- npx -y @peekdev/mcp # 2. Install the Chrome extension from the Chrome Web Store # (link added once the CWS listing is approved)

a day ago