ワンクリックで
context-research
Discover and analyze prediction markets on Context Markets
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Discover and analyze prediction markets on Context Markets
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Create, cancel, or manage multiple orders in a single batch
Place and manage prediction market orders on Context Markets
Build an embeddable single-market prediction widget with buy/sell buttons
Build a portfolio dashboard showing positions, P&L, balances, and claimable winnings
Build prediction market frontends with the Context React SDK
Scaffold a full prediction market trading UI with market list, orders, and portfolio
| name | context-research |
| description | Discover and analyze prediction markets on Context Markets |
Discover markets, analyze prices, interpret oracle signals, simulate trades, and monitor activity — all read-only.
npx context-markets-mcp)active (trading open), pending (awaiting resolution), resolved (outcome determined), closed (no longer trading).The AI oracle evaluates markets independently of trading. context_get_oracle and ctx.markets.oracle() return evidence, summary, and confidence context. Numeric oracle quotes come from ctx.markets.latestOracleQuote(marketId) or ctx.markets.oracleQuotes(marketId), not from context_get_oracle.
context_list_markets · context_get_market · context_get_quotes · context_get_orderbook · context_simulate_trade · context_price_history · context_get_oracle · context_global_activity
context_get_portfolio · context_get_balance
const ctx = new ContextClient(); // no auth needed for reads
// Discovery
ctx.markets.list(params?: SearchMarketsParams)
ctx.markets.get(id: string)
// Price data
ctx.markets.quotes(marketId)
ctx.markets.orderbook(marketId, params?)
ctx.markets.fullOrderbook(marketId, params?) // both YES and NO sides
ctx.markets.priceHistory(marketId, params?)
// Oracle
ctx.markets.oracle(marketId)
ctx.markets.latestOracleQuote(marketId)
ctx.markets.oracleQuotes(marketId)
ctx.markets.requestOracleQuote(marketId)
// Simulation
ctx.markets.simulate(marketId, { side, amount, amountType })
// Activity
ctx.markets.activity(marketId, params?)
ctx.markets.globalActivity(params?)
context markets list Search and filter markets
context markets get <id> Market details
context markets quotes <id> Current bid/ask/last
context markets orderbook <id> Orderbook depth
context markets simulate <id> Preview a trade
context markets price-history Historical prices
context markets oracle <id> Oracle evidence summary
context markets oracle-quotes Oracle quote history
context markets activity <id> Market activity feed
context markets global-activity Cross-market activity
| Workflow | When to use |
|---|---|
| market-scanner | Find interesting markets by volume, trend, or liquidity |
| mispricing-finder | Identify oracle vs market price divergence |
| portfolio-analysis | Review positions, P&L, and claimable winnings |
| activity-monitor | Track trading volume and market movements |