- Install the MCP server in any major agent runtime
- Compose Predexon tools with your own
- Build the five most common agent patterns (research, monitor, alert, copy-trade, wallet analysis)
60-second install
Pick your runtime, paste the config, restart.- Claude Desktop
- Claude Code
- Cursor
- Codex
Edit Restart Claude Desktop. Ask: “List the top 5 Polymarket markets by volume.”
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):The tools at a glance
Full tool list with descriptions on the MCP Server page.
Recipe 1 — Market research assistant
Use case: “What’s happening in election markets right now?” Agent surveys, summarizes, cites. System prompt sketch:list_kalshi_markets if you want it to cite Kalshi prices side-by-side.
Recipe 2 — Position monitor
Use case: Daily digest of how a wallet’s portfolio moved overnight. System prompt sketch:Recipe 3 — Smart-money alerter
Use case: Real-time alert when profitable wallets enter a market you care about. This one streams instead of polling. Agent runtimes that support background MCP tool use (Claude Code, custom builds) can call:get_polymarket_smart_activity alone.
Recipe 4 — Copy-trade watcher
Use case: Track a high-performing wallet’s fills and report them the moment they land.Recipe 5 — Wallet deep-dive analyst
Use case: Full due-diligence report on any wallet, on request.get_polymarket_wallet_profiles (up to 20 per call) when ranking a leaderboard.
Tips for building good agents on Predexon
Prefer smart-money tools over raw trades
Prefer smart-money tools over raw trades
get_polymarket_smart_money and get_polymarket_smart_activity already filter to profitable wallets. Using them keeps your context window small and signal-to-noise high vs. paginating the raw trades endpoint.Bound the wallet space before profile lookups
Bound the wallet space before profile lookups
get_polymarket_wallet_profiles (batch) accepts up to 20 wallets per call. Have the agent batch lookups when summarizing a leaderboard.Watch for stale data on resolved markets
Watch for stale data on resolved markets
Markets that resolved 2+ weeks ago may not appear in default queries. Add
archived=true if your agent needs to reason about historical resolutions.Don't combine wildcard WS subscriptions with the MCP server
Don't combine wildcard WS subscriptions with the MCP server
The MCP server uses REST. For wildcard firehose streaming, connect to the WebSocket directly — it’s not a fit for chat-loop agent runtimes.
What you should read next
Full MCP server reference
Complete tool list with descriptions, all runtime configurations.
Cookbook
Production-grade recipes you can crib from.
Data & Signals overview
The REST endpoints behind every MCP tool.
Builder Architecture Guide
If your agent places trades — account model, custody, fee monetization.
