Back to Browse

Polyrama MCP Server

by UnrealUGC Support
Data & AnalyticsLow Risk8.2LocalNew
Free

Prediction-market research for Polymarket and Kalshi, directly in your AI client.

About

Polyrama is an open-source Model Context Protocol server for researching live prediction markets. It gives compatible AI clients typed tools for Polymarket and Kalshi market search, live odds and spreads, public-wallet analytics, trader leaderboards, whale and mispricing signals, dashboard snapshots, and historical backtests. Its only order-writing workflow records paper trades; the server does not expose a live-order tool.

Security Report

8.2
Low Risk8.2Low Risk

This is a well-structured MCP server with proper authentication, input validation, and secure credential handling. The code demonstrates good security practices including schema validation via Zod, no hardcoded secrets, and appropriate error handling that avoids credential leakage. Permissions align well with the server's purpose of market research and paper trading. Minor quality issues around broad error catch clauses and test coverage do not materially impact security. Package verification found 1 issue.

7 files analyzed · 4 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

env_vars

Check that this permission is expected for this type of plugin.

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "polyrama": {
      "args": [
        "-y",
        "@polyrama/mcp"
      ],
      "command": "npx"
    }
  }
}

Getting Started

Once installed, try these example prompts and explore these capabilities:

  • 1"Find the most active Polymarket and Kalshi markets right now."
  • 2"Show recent whale and market-mispricing signals."
  • 3"Compare the top public Polymarket traders by seven-day volume."
  • 4"Run a historical backtest for this market and summarize the result."
  • 5Tool: `polyrama_search_markets` — Search and rank live prediction markets.
  • 6Tool: `polyrama_get_trader` — Inspect one public Polymarket wallet.
  • 7Tool: `polyrama_recent_signals` — Retrieve recent market and trader signals.
  • 8Tool: `polyrama_run_backtest` — Run a paper strategy against historical data.

Documentation

View on GitHub

From the project's GitHub README.

npm CI

The official Model Context Protocol server for Polyrama, the real-time terminal for prediction markets. It gives MCP-compatible assistants ten typed tools for researching Polymarket and Kalshi markets, analyzing public Polymarket wallets, reading signals, and running paper-only workflows.

This repository contains only the public MCP adapter. The Polyrama application, trading engine, backend, deployment configuration, and private credentials remain private.

Prerequisites

Pass the token through your MCP client's environment settings. Never commit it to a repository, paste it into an issue, or include it in screenshots and logs.

Run with npx

You do not need a global installation. Use npx in any stdio-compatible MCP client.

Claude Desktop

{
  "mcpServers": {
    "polyrama": {
      "command": "npx",
      "args": ["-y", "@polyrama/mcp"],
      "env": {
        "POLYRAMA_API_TOKEN": "<your-token>"
      }
    }
  }
}

Claude Code

claude mcp add polyrama --env POLYRAMA_API_TOKEN=<your-token> -- npx -y @polyrama/mcp

Codex

[mcp_servers.polyrama]
command = "npx"
args = ["-y", "@polyrama/mcp"]

[mcp_servers.polyrama.env]
POLYRAMA_API_TOKEN = "<your-token>"

Cursor, Windsurf, Cline, Goose, Zed, OpenClaw, and other stdio MCP clients use the same command and environment variable.

Tools

ToolPurposeScope
polyrama_search_marketsSearch live Polymarket and Kalshi marketsread
polyrama_get_marketInspect one market by token idread
polyrama_top_tradersRank public Polymarket walletsread
polyrama_get_traderRead one wallet's positions and performanceread
polyrama_refresh_traderRefresh one public walletwrite:paper
polyrama_recent_signalsRead whales, jolts, spikes, and mispricing signalsread
polyrama_list_botsList configured bots and statusread
polyrama_state_snapshotRead the full dashboard stateread
polyrama_run_backtestRun a historical strategy backtestwrite:paper
polyrama_place_paper_orderRecord a paper-only tradewrite:paper

The public MCP package has no live-order tool and never calls a live-order endpoint. It cannot move funds or submit an exchange order.

Environment variables

VariableRequiredDefault
POLYRAMA_API_TOKENYes
POLYRAMA_API_URLNohttps://polyrama.io
POLYRAMA_REQUEST_TIMEOUT_MSNo30000

POLYRAMA_API_URL is intended for Polyrama development and staging deployments.

Development

npm ci
npm run check
npm pack --dry-run

See CONTRIBUTING.md before opening a pull request. Security reports should follow SECURITY.md.

Links

Disclaimer

Polyrama is for research and informational use only, not financial advice. Prediction markets involve risk. Review source data and venue rules before acting on any result.

License

MIT © 2026 Polyrama contributors

Reviews

No reviews yet

Be the first to review this server!