1. Conduid
  2. Blockchain
  3. Event Resolver API
MCP server · Blockchain

Event Resolver API

Resolve prediction market events. Price checks, claim verification, outcome confidence.

Unclaimed blockchain
34Low

Scored 4 months ago · breakdown

About Event Resolver API

Event Resolver API is an MCP server in the Blockchain category: resolve prediction market events. Price checks, claim verification, outcome confidence. It has been installed 0 times through Conduid.

Install

Clone
git clone https://github.com/Br0ski777/event-resolver-x402

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Event Resolver API

Powered by Claude · Grounded in docs

I know everything about Event Resolver API. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • ·Scoped permissionsNot checked yet.

README

Event Resolver API

Resolve real-world events for prediction market settlement. Aggregates data from multiple sources to determine if an event occurred, with confidence scores and source attribution.

What It Does / Endpoints

Endpoint Method Price Description
/api/resolve POST $0.005 Full event resolution with confidence score and sources
/api/verify POST $0.003 Quick-verify a factual claim (true/false/unverifiable)
/api/price-check POST $0.002 Check if crypto price crossed a threshold

Example Request/Response

POST /api/resolve

curl -X POST https://event-resolver-production.up.railway.app/api/resolve \
  -H "Content-Type: application/json" \
  -d '{"question": "Did BTC reach $100K?", "type": "binary"}'

Response:

{
  "question": "Did BTC reach $100K?",
  "resolved": true,
  "outcome": "Yes",
  "confidence": 95,
  "sources": [
    {
      "name": "CoinGecko",
      "url": "https://www.coingecko.com/en/coins/bitcoin",
      "agrees": true
    }
  ],
  "timestamp": "2026-04-13T12:00:00.000Z",
  "type": "binary"
}

POST /api/verify

curl -X POST https://event-resolver-production.up.railway.app/api/verify \
  -H "Content-Type: application/json" \
  -d '{"claim": "Bitcoin is above $90,000"}'

Response:

{
  "claim": "Bitcoin is above $90,000",
  "verdict": "true",
  "confidence": 95,
  "evidence": [
    "bitcoin current price: $102,450 (via CoinGecko)",
    "Threshold $90,000 above: crossed"
  ]
}

POST /api/price-check

curl -X POST https://event-resolver-production.up.railway.app/api/price-check \
  -H "Content-Type: application/json" \
  -d '{"asset": "bitcoin", "threshold": 100000, "direction": "above"}'

Response:

{
  "asset": "bitcoin",
  "currentPrice": 102450.23,
  "threshold": 100000,
  "direction": "above",
  "crossed": true,
  "crossedAt": "2026-04-13T12:00:00.000Z",
  "timestamp": "2026-04-13T12:00:00.000Z"
}

Use Cases

  • Prediction market settlement -- Automated oracle for resolving binary, numeric, and categorical outcomes on-chain
  • Fact checking -- Quick verification of claims with confidence scores and source attribution
  • Price monitoring -- Check if crypto assets crossed key price thresholds for contract settlement
  • Event tracking -- Determine if real-world events (elections, sports, policy changes) occurred
  • On-chain resolution -- Provide objective data for HIP-4, Polymarket, or custom smart contract settlement

MCP Integration

Add to your Claude Desktop or Cursor config:

{
  "mcpServers": {
    "event-resolver": {
      "url": "https://event-resolver-production.up.railway.app/sse"
    }
  }
}

Payment

All endpoints use x402 protocol -- pay-per-call with USDC on Base L2. No API keys, no subscriptions. Your agent pays automatically.

Related APIs

README mirrored from the source repository 4 months ago. The original is authoritative.

Questions

About Event Resolver API

How do I install Event Resolver API?

Run git clone https://github.com/Br0ski777/event-resolver-x402, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Event Resolver API safe to use with an AI agent?

Its trust score is 34 out of 100 (low). Conduid hasn't run static security checks on this repository yet, so review the source yourself before granting it credentials. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Event Resolver API still maintained?

Conduid hasn't recorded a commit date for this repository yet. Check the repository directly for recent activity.