Connection check
verified live · 27h ago
event-resolver
Resolve prediction market events. Price checks, claim verification, outcome confidence.
Tools
3
GitHub stars
—
Installs / wk
—
Licence
MIT
Transport
sse
Last checked
27h ago
Tools & capabilities
3 toolsRead from the running server on 27h ago.
event_check_price_threshold
asset*direction*threshold*
Use this when you need to check if a cryptocurrency or stock price has crossed a specific threshold -- the most common resolution type in prediction markets. Returns current price,… Use this when you need to check if a cryptocurrency or stock price has crossed a specific threshold -- the most common resolution type in prediction markets. Returns current price, whether threshold was crossed, and direction. 1. asset: the asset being checked (e.g. "bitcoin", "ethereum", "solana") 2. currentPrice: the current price in USD from CoinGecko 3. threshold: the target price threshold 4. direction: "above" or "below" -- which direction constitutes crossing 5. crossed: boolean indicating whether the price has crossed the threshold in the specified direction Example output: { "asset": "bitcoin", "currentPrice": 102450.23, "threshold": 100000, "direction": "above", "crossed": true } Use this for settling price-based prediction market contracts, monitoring price milestones, or triggering alerts when assets cross key levels. Uses CoinGecko free API for crypto prices (no auth required). Do NOT use for crypto prices only -- use token_get_price instead. Do NOT use for prediction market odds -- use prediction_list_markets instead. Do NOT use for stock prices -- use stock_get_quote instead. Do NOT use for trust/security scoring -- use trust_score_evaluate instead.
event_resolve_outcome
typequestion*
Use this when you need to determine the outcome of a real-world event for prediction market settlement. Takes a natural language question (e.g. "Did BTC reach $100K?", "Did France… Use this when you need to determine the outcome of a real-world event for prediction market settlement. Takes a natural language question (e.g. "Did BTC reach $100K?", "Did France win the 2026 World Cup?") and returns a structured resolution with confidence score. 1. question: the original question being resolved 2. resolved: whether the event can be conclusively determined (true/false) 3. outcome: the determined result -- "Yes"/"No" for binary, a number for numeric, or a category string 4. confidence: 0-100 score indicating certainty of the resolution 5. sources: array of data sources consulted, each with name, url, and whether it agrees with the outcome 6. timestamp: ISO timestamp of when the resolution was performed Example output: { "question": "Did BTC reach $100K?", "resolved": true, "outcome": "Yes", "confidence": 95, "sources": [{ "name": "CoinGecko", "url": "https://coingecko.com", "agrees": true }], "timestamp": "2026-04-13T12:00:00Z" } Use this when settling prediction market contracts, verifying event outcomes for on-chain resolution, or building automated settlement oracles. Handles price-based questions via CoinGecko and general questions via web search aggregation. Do NOT use for prediction market odds -- use prediction_list_markets instead. Do NOT use for crypto prices only -- use token_get_price instead. Do NOT use for full fact checking with sources -- use research_check_fact instead. Do NOT use for trust/security scoring -- use trust_score_evaluate instead.
event_verify_claim
claim*