Skip to main content
ClaudeWave

Hosted MCP server: Kalshi & Polymarket quant tools, NFL model edges, and a 2026 fantasy draft assistant for AI agents. 22 tools, 15 free.

MCP ServersRegistry oficial0 estrellas1 forksJavaScriptMITActualizado 7d ago
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 9/9/2026
Install in Claude Code / Claude Desktop
Method: NPX · @predictionmarketspicks/mcp
Claude Code CLI
claude mcp add mcp -- npx -y @predictionmarketspicks/mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "mcp": {
      "command": "npx",
      "args": ["-y", "@predictionmarketspicks/mcp"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Casos de uso

Resumen de MCP Servers

# PredictionMarketsPicks MCP

[![npm](https://img.shields.io/npm/v/@predictionmarketspicks/mcp)](https://www.npmjs.com/package/@predictionmarketspicks/mcp)
[![mcp MCP server](https://glama.ai/mcp/servers/predictionmarketspicks/mcp/badges/card.svg)](https://glama.ai/mcp/servers/predictionmarketspicks/mcp)

A hosted **Model Context Protocol** server that gives AI agents quant tools for **Kalshi** and **Polymarket** prediction markets — expected value, Kelly sizing, Bayesian updating, probability conversion, cross-platform price gaps, live edge signals, and a 2026 NFL fantasy draft assistant.

**Every signal our engines publish is graded against the market that priced it: 1,612 decided signals, +$98.40 net on a flat one-contract stake, as of Aug 18, 2026 — published per tool, including the engines that lose money.** → [predictionmarketspicks.com/track-record](https://predictionmarketspicks.com/track-record?utm_source=github&utm_medium=readme&utm_campaign=mcp-server)

- **Endpoint (Streamable HTTP):** `https://predictionmarketspicks.com/api/mcp/mcp`
- **Registry name:** `com.predictionmarketspicks/quant` ([MCP registry](https://registry.modelcontextprotocol.io))
- **Docs / landing page:** [predictionmarketspicks.com/mcp](https://predictionmarketspicks.com/mcp?utm_source=github&utm_medium=readme&utm_campaign=mcp-server)
- **24 tools** — 17 free, 5 Pro, 2 free-with-depth-caps. No key needed for the free set.
- **Fantasy draft landing page:** [predictionmarketspicks.com/draft](https://predictionmarketspicks.com/draft?utm_source=github&utm_medium=readme&utm_campaign=mcp-server) — the eight draft tools, connect instructions, and the model behind the board

## Connect

**Any host that speaks Streamable HTTP** (Claude Code, Claude.ai, ChatGPT, Cursor) — point it at the URL. Nothing to install:

```
claude mcp add --transport http predictionmarketspicks https://predictionmarketspicks.com/api/mcp/mcp
```

**Hosts that only speak stdio** — this package bridges one to the other:

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

That relays the hosted server verbatim — all 24 tools, live data, tool schemas and result payloads untouched. Set `PMP_API_KEY` in the server's `env` to unlock the Pro tools; without one you get the free tools at free depth.

```
npx @predictionmarketspicks/mcp            # bridge to the hosted quant server (default)
npx @predictionmarketspicks/mcp --draft    # bridge to the fantasy-draft server instead
npx @predictionmarketspicks/mcp --local    # 6 calculators, offline, no network at all
```

`--local` is a self-contained build of the six stateless calculators. It makes no network calls, so it runs in an air-gapped sandbox — but it cannot serve the live engines, the draft desk, or anything that reads a market.

## Tools

Free tools need no key. Pro tools read the live PMP edge engines and require a PredictionMarketsPicks API key ([$14.99/mo](https://predictionmarketspicks.com/pricing?utm_source=github&utm_medium=readme&utm_campaign=mcp-server)). Deeper results on the list-shaped tools unlock instantly and free — no key to copy, nothing to install: [unlock here](https://predictionmarketspicks.com/mcp/unlock?utm_source=github&utm_medium=readme&utm_campaign=mcp-server).

### Calculators — free, stateless, also available offline via `--local`

| Tool | What it does |
|---|---|
| `calculate_ev` | Expected-value edge on a contract from market price + your probability; returns edge % and a BUY / SELL / SKIP read. |
| `kelly_size` | Kelly position size (full / half / quarter / eighth) from win probability, price, and bankroll, with a risk rating. |
| `bayes_update` | Update a prior with one or more pieces of evidence; returns the posterior and the per-step chain. |
| `convert_probability` | Convert between implied probability, American odds, and decimal odds. |
| `base_rate_gap` | Compare a market price to the historical base rate for a class of events; returns the gap in points + sample quality. |
| `combo_edge` | Grade a same-game multi-leg combo: EV %, fair vs offered odds, correlation-aware joint probability, negative-correlation trap flag. |

### Markets — free, depth-capped

| Tool | What it does |
|---|---|
| `find_arbitrage` | Cross-venue price gaps between Kalshi and Polymarket on the same contract. Largest gap free; whole board on Pro. |
| `market_pulse` | US macro-health composite (0–100) and regime, plus six category scores. Composite always free. |

### NFL + fantasy draft — free

`draft_board` · `best_available` · `who_do_i_draft` · `compare_players` · `player_outlook` · `explain_player` · `sleepers_and_busts` · `adp_market_gaps` · `nfl_power_ratings` · `nfl_win_probability`

The 2026 half-PPR board with model calls, tier breaks, ADP-vs-model gaps, per-player reasoning, and eight platform ADP presets. Single-player lookups are never capped.

### Pro — live edge engines

`commodity_edge` · `scan_mispricings` · `nfl_edge` · `nfl_prop_edge` · `edge_alerts`

Trade tickets from the silver, gold, oil and bitcoin engines; Polymarket contracts trading away from the PMP model; NFL game and prop edges; the alerts feed.

All tool descriptions and outputs use prediction-market terminology (trader / position / contract / market analysis).

## Source

This repo is the public home of the server: the manifest, the bridge, the offline calculator build, and the docs. The hosted service and its live data are operated by PredictionMarketsPicks — MIT license covers this repository, and **no install is required to use the server**.

```
npm install
npm run smoke          # offline calculator self-test, no network
npm run smoke:bridge   # bridge self-test against the hosted endpoint
npm start -- --local   # stdio server, 6 calculators
```

Or run the offline build with Docker:

```
docker build -t pmp-mcp-quant .
docker run --rm -i pmp-mcp-quant
```

## About

Built by [PredictionMarketsPicks](https://predictionmarketspicks.com/?utm_source=github&utm_medium=readme&utm_campaign=mcp-server) — independent quant tools and edge analysis for Kalshi and Polymarket, published by The 7 Oracles. Educational analysis, not financial advice.

## License

MIT — see [`LICENSE`](./LICENSE).
ai-agentsclaudefantasy-footballkalshillm-toolsmcpmcp-servermodel-context-protocolnflpolymarketprediction-marketsquant

Lo que la gente pregunta sobre mcp

¿Qué es predictionmarketspicks/mcp?

+

predictionmarketspicks/mcp es mcp servers para el ecosistema de Claude AI. Hosted MCP server: Kalshi & Polymarket quant tools, NFL model edges, and a 2026 fantasy draft assistant for AI agents. 22 tools, 15 free. Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-09-01.

¿Cómo se instala mcp?

+

Puedes instalar mcp clonando el repositorio (https://github.com/predictionmarketspicks/mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar predictionmarketspicks/mcp?

+

Nuestro agente de seguridad ha analizado predictionmarketspicks/mcp y le ha asignado un Trust Score de 95/100 (tier: Verified). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene predictionmarketspicks/mcp?

+

predictionmarketspicks/mcp es mantenido por predictionmarketspicks. La última actividad registrada en GitHub es del 2026-09-01, con 0 issues abiertos.

¿Hay alternativas a mcp?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega mcp en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: predictionmarketspicks/mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/predictionmarketspicks-mcp)](https://claudewave.com/repo/predictionmarketspicks-mcp)
<a href="https://claudewave.com/repo/predictionmarketspicks-mcp"><img src="https://claudewave.com/api/badge/predictionmarketspicks-mcp" alt="Featured on ClaudeWave: predictionmarketspicks/mcp" width="320" height="64" /></a>

Más MCP Servers

Alternativas a mcp