Tools Catalog

Prediction Market Tools for AI Agents

This scoped endpoint exposes the current Prediction Markets tool set.

Category Endpoint: POST /hive_prediction_markets/mcp

Providers represented here: Codex


Scope

This page documents the tools exposed by the category-scoped MCP endpoint above.

  • tools/list on this category endpoint returns the current scoped tool set directly.
  • The full Hive server also exposes the complete wrapped provider catalog through root invoke_api_endpoint, category endpoints, and the REST catalog.
  • For the complete wrapped provider catalog, including tools outside this category page, see Live Catalog.
  • Upstream prediction-market coverage is powered by Codex/Defined. The current official Defined docs are labeled beta, so expect iterative schema changes upstream.

Included Tools

ToolProviderSummary
codex_prediction_market_statsCodexRetrieve prediction market stats data through Hive Intelligence.
codex_prediction_event_statsCodexRetrieve prediction event stats data through Hive Intelligence.
codex_prediction_trader_statsCodexRetrieve prediction trader stats data through Hive Intelligence.
codex_prediction_trader_marketsCodexRetrieve prediction trader markets data through Hive Intelligence.
codex_prediction_trader_barsCodexRetrieve prediction trader bars data through Hive Intelligence.
codex_prediction_market_barsCodexRetrieve prediction market bars data through Hive Intelligence.
codex_prediction_event_barsCodexRetrieve prediction event bars data through Hive Intelligence.
codex_prediction_event_top_marketsCodexRetrieve prediction event top markets data through Hive Intelligence.
codex_prediction_tradesCodexRetrieve prediction trades data through Hive Intelligence.
codex_prediction_marketsCodexRetrieve prediction markets data through Hive Intelligence.
codex_prediction_tradersCodexRetrieve prediction traders data through Hive Intelligence.
codex_prediction_token_holdersCodexRetrieve prediction token holders data through Hive Intelligence.
codex_filter_prediction_eventsCodexRetrieve filter prediction events data through Hive Intelligence.
codex_prediction_categoriesCodexRetrieve prediction categories data through Hive Intelligence.
codex_filter_prediction_marketsCodexRetrieve filter prediction markets data through Hive Intelligence.
codex_filter_prediction_trader_marketsCodexRetrieve filter prediction trader markets data through Hive Intelligence.
codex_filter_prediction_tradersCodexRetrieve filter prediction traders data through Hive Intelligence.
codex_prediction_market_priceCodexRetrieve prediction market price data through Hive Intelligence.
codex_prediction_trader_holdingsCodexRetrieve prediction trader holdings data through Hive Intelligence.

Response Examples

codex_prediction_markets

Request:

{"tool": "codex_prediction_markets", "args": {"limit": 5}}

Response:

{
  "markets": [
    {
      "id": "0x...",
      "title": "Will BTC exceed $100k by June 2026?",
      "outcome_prices": [
        {"outcome": "Yes", "price": 0.72},
        {"outcome": "No", "price": 0.28}
      ],
      "volume_usd": 4500000,
      "liquidity_usd": 1200000,
      "end_date": "2026-06-30T00:00:00Z",
      "category": "Crypto",
      "platform": "Polymarket"
    }
  ],
  "total_count": 1250
}

Discovery

Use these discovery surfaces when you need the current live catalog:

  • GET https://mcp.hiveintelligence.xyz/api/v1/tools
  • resources/read hive://tools
  • get_api_endpoint_schema on the root /mcp endpoint