원클릭으로
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 |