Skip to main content
You’re building agents that need prediction-market context — research assistants, signal bots, position monitors, alert systems. The Predexon MCP server gives any MCP-aware model access to tools spanning every data surface, behind one drop-in package. You’ll be ready to:
  • 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.
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
Restart Claude Desktop. Ask: “List the top 5 Polymarket markets by volume.”
Full config matrix (VS Code, Cline, etc.) on the MCP Server page.

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:
The agent will compose tools without further prompting. Add 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:
Pair with a cron tool (most agent runtimes have one) for fully autonomous reporting.

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:
Cheaper agents can run this on a 15-min cadence with 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.
Execution is up to you and your own venue integration — see Copy-trade cookbook recipe for the production signal pipeline.

Recipe 5 — Wallet deep-dive analyst

Use case: Full due-diligence report on any wallet, on request.
Batch multiple wallets with get_polymarket_wallet_profiles (up to 20 per call) when ranking a leaderboard.

Tips for building good agents on Predexon

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.
get_polymarket_wallet_profiles (batch) accepts up to 20 wallets per call. Have the agent batch lookups when summarizing a leaderboard.
Markets that resolved 2+ weeks ago may not appear in default queries. Add archived=true if your agent needs to reason about historical resolutions.
The MCP server uses REST. For wildcard firehose streaming, connect to the WebSocket directly — it’s not a fit for chat-loop agent runtimes.

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.