Resolved Markets

Created By
Elcara HQ13 days ago
Connect any AI agent to live and historical Polymarket prediction-market orderbook data — BTC/ETH/SOL/XRP across 5m, 15m, 1h, and 1d timeframes — plus Hyperliquid perpetual orderbooks. 13 tools for listing markets, fetching live orderbooks, querying time-series snapshots, and aggregated market summaries. Use the hosted endpoint with your API key, or self-host via npm.
Overview

Resolved Markets MCP Server

MCP server for Resolved Markets — connect Claude, GPT, or any AI agent to live and historical Polymarket prediction-market orderbook data, plus Hyperliquid perpetual orderbooks.

What you get

  • Crypto prediction markets — BTC, ETH, SOL, XRP across 5m / 15m / 1h / 1d timeframes
  • Live orderbooks — bid/ask arrays, spread, depth, by conditionId or slug
  • Historical time-series — paginated snapshots captured at ~20Hz for spread/depth analysis
  • Hyperliquid perps — live and historical perp orderbooks (Pro tier+)
  • Market discovery — categories, live markets, and closed/past markets

Get an API key at resolvedmarkets.com/api-keys, then add:

{
  "mcpServers": {
    "resolvedmarkets": {
      "command": "npx",
      "args": [
        "-y", "mcp-remote",
        "https://mcp.resolvedmarkets.com/mcp",
        "--header", "X-API-Key: rm_your_api_key_here"
      ]
    }
  }
}

Your tier and quota attach to your own key (free = BTC only + 24h history + 60 rpm; Pro = all crypto + Hyperliquid + 500 rpm; Enterprise = everything + 3000 rpm).

Self-hosted (npm)

{
  "mcpServers": {
    "resolvedmarkets": {
      "command": "npx",
      "args": ["-y", "@elcara-hq/resolvedmarkets-mcp"],
      "env": {
        "HF_API_URL": "https://api.resolvedmarkets.com",
        "HF_API_KEY": "rm_your_api_key_here"
      }
    }
  }
}

Tools

ToolDescription
list_categoriesDiscover tracked categories with market counts
list_marketsList live markets, optionally filtered by category
list_historical_marketsList closed/past markets (recent or full)
get_marketResolve a market by slug into conditionId + metadata
get_orderbookLive orderbook by conditionId or slug
get_market_summary7-day aggregated stats (price range, spreads)
get_snapshotHistorical orderbook state at a timestamp
get_latest_snapshotsThe 5 most recent snapshots (freshness check)
query_snapshotsPaginated time-series of snapshots (core analysis tool)
get_exchange_orderbookLive Hyperliquid perp orderbook (Pro+)
get_exchange_snapshotsHistorical Hyperliquid perp snapshots (Pro+)
get_system_statsSystem-wide stats (live markets, throughput, prices)

Resources

URIDescription
markets://liveCurrently active markets with token IDs and metadata
prices://latestCurrent crypto prices and dataset/exchange stats

Example queries

  • "What BTC prediction markets are live right now?"
  • "Show me the live orderbook for btc-updown-5m"
  • "Pull the last 500 snapshots for that market and analyze the spread trend"
  • "Compare the Polymarket BTC price to the Hyperliquid BTC perp"

Server Config

{
  "mcpServers": {
    "resolvedmarkets": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://mcp.resolvedmarkets.com/mcp",
        "--header",
        "X-API-Key: rm_your_api_key_here"
      ]
    }
  }
}
Project Info
Created At
13 days ago
Updated At
13 days ago
Author Name
Elcara HQ
Star
-
Language
-
License
-
Category

Recommend Servers

View All
Tavily Mcp
@tavily-ai

JavaScript
a year ago
AI Work Market — USDC settlement rails for AI labor on Base Mainnet)
@Dario (DME)

AI Work Market is a USDC escrow protocol on Base Mainnet, designed for autonomous AI agents to find work, post jobs, and settle payments without humans in the loop. This MCP server exposes 10 tools: **Escrow lifecycle** - `create_intent_quote` — get calldata + gas estimate for funding a new escrow intent - `submit_proof_quote` — get calldata for the seller to submit a proof URI - `release_funds_quote` — get calldata for the buyer to release payment (or claim/refund) **x402 single-call binding** - `x402_consume` — replaces the 5-step x402 flow with one HMAC-signed POST that returns a delivery URL **Onboarding & discovery** - `agent_onboard` — generate a signed agent card with marketplace attestation - `agent_search` — tf-idf search over the live agent catalog - `agent_reputation` — server-side reputation from on-chain Released/Refunded/Disputed events **Live state** - `system_status` — live on-chain state (nextIntentId, accumulatedFees, contract balance, owner) - `escrow_rules` — contract semantics, lifecycle, call guides, failure modes - `events_subscribe` — SSE stream of new on-chain intent events All endpoints are serverless (Vercel) and return their schema on GET. No browser, no wallet UI required for an agent to integrate. The protocol takes a 1% commission on every settlement; the rest goes to the seller. The full AgentCard is at `/.well-known/agent-card.json` (A2A-compatible). The OpenAPI 3.0.3 spec is at `/.well-known/openapi.json` with `components.securitySchemes` (none, hmacX402). `robots.txt` allows GPTBot, ClaudeBot, anthropic-ai, PerplexityBot, Google-Extended, Applebot-Extended, CCBot, Amazonbot.

34 minutes ago