PredictEngine Developers
Model Context Protocol

MCP Integration

Connect AI agents like Claude Desktop directly to PredictEngine. Your AI assistant can read markets, manage bots, and execute trades on your behalf.

What is MCP?

The Model Context Protocol is an open standard that lets AI models interact with external tools and data sources. PredictEngine exposes an MCP-compatible manifest that gives AI agents access to our full API.

This means you can ask Claude (or any MCP-compatible AI) to analyze markets, create bots, and trade — all through natural language.

Setup for Claude Desktop

1

Open Claude Desktop settings

Go to Claude Desktop → Settings → Developer → Edit Config

2

Add PredictEngine as an MCP server

{
  "mcpServers": {
    "predictengine": {
      "url": "https://predictengine.ai/.well-known/mcp.json",
      "headers": {
        "X-API-Key": "pe_live_YOUR_KEY",
        "X-API-Secret": "pe_secret_YOUR_SECRET"
      }
    }
  }
}

Replace pe_live_YOUR_KEY and pe_secret_YOUR_SECRET with your actual credentials from the API Keys page.

3

Restart Claude Desktop

After saving the config, restart Claude Desktop. You should see "PredictEngine" listed as a connected tool.

Example prompts

"What prediction markets are trending right now?"
"Show me all crypto markets with prices above 0.7"
"Create a bot that buys BTC 1-hour when price drops below 0.45"
"What are my current open positions and their P&L?"
"Start my arbitrage bot and tell me when it finds an opportunity"

MCP Manifest

The raw MCP manifest describing all available tools and their schemas:

View Manifest