Skip to main content

Research

Skill for market discovery and analysis — find markets, analyze oracle data, track prices, and simulate trades.
Claude Code: /context:research · Codex: $context-research · API/Cursor/ChatGPT: Load full.md as system prompt

What it covers

DomainSDK methodsMCP tools
Market discoveryctx.markets.listlist_markets, search_markets
Market detailsctx.markets.getget_market
Price datactx.markets.quotes, priceHistoryget_quotes, get_price_history
Oracle analysisctx.markets.oracle, oracleQuotesget_oracle_data
Trade simulationctx.markets.simulatesimulate_trade
Activity feedsctx.markets.activity, globalActivityN/A (SDK only)
Orderbook analysisctx.markets.orderbookget_orderbook

Prerequisites

  • Context MCP server
  • No API key needed for read-only data

Installation

# 1. Clone the skills repository
git clone https://github.com/contextwtf/context-skills.git

# 2. Install the research skill
cd context-skills && ./install.sh research

# 3. Add the Context MCP server
claude mcp add context-markets -- npx @contextwtf/mcp
No API key or private key needed — all research tools are read-only.

Example prompts

  • “Find all active markets about technology”
  • “What’s the oracle’s probability estimate for market abc123?”
  • “Show the price history for market xyz789 over the last week”
  • “Simulate buying $100 of YES on market abc123 — what’s the slippage?”
  • “Which markets have the highest volume today?”
  • “Compare the oracle estimate vs the current market price for market abc123”
  • “Show me the orderbook depth for market xyz789”
  • “What markets were recently created?”

Composite workflows

Market scanner

Discover active markets, rank by volume and liquidity, analyze spreads and oracle alignment.

Oracle arbitrage finder

Compare oracle probability estimates against current market prices, flag significant deviations for potential trading opportunities.

Portfolio research

Analyze existing positions, check resolution status, find exit opportunities by simulating sells.

What’s included

FileDescription
SKILL.mdEntry point — market data APIs, oracle system, search patterns
prompts/openai.developer.mdOpenAI-formatted system prompt
prompts/claude.system.mdClaude-formatted system prompt
prompts/full.mdUniversal format
references/markets.mdFull markets API reference
references/oracle.mdOracle resolution system guide
references/price-data.mdPrice history and quote patterns
references/simulation.mdTrade simulation guide