# predictDEX (remote · predict.dex.mk)

Live Polymarket odds, order books, fee-inclusive quotes and non-custodial prediction trading.

- Trust score: 76/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-09-25

## Components

- remote · `predict.dex.mk`: 76/100 (this document), [markdown](https://verifymcp.io/servers/mk-dex-predictdex/predict.md), [page](https://verifymcp.io/servers/mk-dex-predictdex/predict)

## Channel facts

- Endpoint: `https://predict.dex.mk/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.0.0`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-09-25.

- **Endpoint Security**: 80/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - No authorisation is required to call this server. Every tool declares its destructiveHint and none is destructive, so open access doesn't expose one.
  - HTTPS is enforced; there's no plaintext access path.
  - The HSTS (Strict-Transport-Security) header is present.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 87/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 1409 tokens (~93/item across 15 items; 11 tools + 4 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 3/100
  - Stability observed for 1 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Tool Safety**: 100/100
  - No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.
  - We read all 11 captured tool definition(s), and no name or description among them implies an irreversible operation.
  - An AI judge read all 13 captured unit(s) of tool text and found none that tries to manipulate the model reading it.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### How do I install the predictDEX MCP server?

predictDEX is a hosted endpoint at https://predict.dex.mk/mcp, so there is nothing to install locally. Ready-made configuration for Claude, Cursor, VS Code, Codex and 5 more is on this page, copied from each client's own documentation.

### Claude

```bash
claude mcp add --transport http mk-dex-predictdex 'https://predict.dex.mk/mcp'
```

### Cursor

```json
{
  "mcpServers": {
    "mk-dex-predictdex": {
      "url": "https://predict.dex.mk/mcp"
    }
  }
}
```

### VS Code

```json
{
  "servers": {
    "mk-dex-predictdex": {
      "type": "http",
      "url": "https://predict.dex.mk/mcp"
    }
  }
}
```

### Codex

```toml
[mcp_servers.mk-dex-predictdex]
url = "https://predict.dex.mk/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "mk-dex-predictdex": {
      "type": "remote",
      "url": "https://predict.dex.mk/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add mk-dex-predictdex --url 'https://predict.dex.mk/mcp' --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  mk-dex-predictdex:
    url: "https://predict.dex.mk/mcp"
```

### Netclaw

```json
{
  "McpServers": {
    "mk-dex-predictdex": {
      "Transport": "http",
      "Url": "https://predict.dex.mk/mcp"
    }
  }
}
```

### Vellum

```bash
assistant mcp add mk-dex-predictdex -t streamable-http -u 'https://predict.dex.mk/mcp'
```

### Other

```json
{
  "mcpServers": {
    "mk-dex-predictdex": {
      "type": "http",
      "url": "https://predict.dex.mk/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-09-25 (score 76, 0)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-09-24 (score 76)

First indexed and scored.

## MCP tools (11)

### `search_markets` (~176 tokens)

Search prediction markets

Find events and their markets with live odds. Filter by free-text query, category slug (see predict://categories), sort and status. Each event lists markets with outcomes, token ids, best bid/ask, tick size and a human URL.

Input parameters:

- `category` (string): Category slug, e.g. politics, crypto, sports, new, breaking, ending
- `limit` (integer): Events to return (1-50, default 20)
- `maxMarkets` (integer): Markets per event (1-50, default 5)
- `offset` (integer): Pagination offset
- `q` (string): Free-text search, e.g. 'fed rate october' or 'bitcoin 150k'
- `sort` (string): Sort order
- `status` (string): active (default), resolved or all

### `get_event` (~76 tokens)

Get one event

Full event by slug: every market, outcome names and prices, token ids, tick size, min order size, rules summary, resolution source and status. Optionally include recent trades.

Input parameters:

- `recentTrades` (integer): Include up to N recent trades (0-50)
- `slug` (string, required): Event slug from search_markets

### `get_orderbook` (~73 tokens)

Get the order book

Live order book for one outcome token: bids and asks (price 0-1, size in shares), spread, midpoint and last trade.

Input parameters:

- `depth` (integer): Levels per side (1-100, default 20)
- `tokenId` (string, required): Outcome token id (digits) from get_event

### `get_price_history` (~43 tokens)

Get price history

Price (probability) history for one outcome token over a range.

Input parameters:

- `range` (string): Time range
- `tokenId` (string, required): Outcome token id

### `quote_order` (~206 tokens)

Quote an order (fee-inclusive)

Preview an order against the live book without placing it: average and worst price, shares, cost, payout if the outcome wins, Polymarket fee, predictDEX fee and warnings. Market BUY amount is USD to spend all-in; market SELL and limit amounts are shares.

Input parameters:

- `amount` (number, required): USD for a market BUY, shares otherwise
- `expiration` (integer): GTD expiry, unix seconds
- `orderType` (string): FAK/FOK for market, GTC/GTD for limit
- `postOnly` (boolean): Limit orders: rest only, never take
- `price` (number): Limit price as probability 0-1 (required for limit)
- `side` (string): BUY or SELL
- `slippage` (number): Market orders: max price move in price units, e.g. 0.02
- `tokenId` (string, required): Outcome token id
- `type` (string): market (default) or limit

### `get_trading_setup` (~68 tokens)

How to trade through predictDEX

Everything an agent with its own wallet needs to trade: chain, collateral (pUSD), builder code, signer URL, attestation steps, fees and a ready-to-run TypeScript snippet using Polymarket's official SDK. Non-custodial: you sign with your own key.

### `create_trade_link` (~132 tokens)

Create a trade link for a person

A pre-filled predictDEX ticket URL (event, market, outcome, side, amount) for a person to review and sign in their own wallet. Opening it executes nothing. Use this when you have no wallet or need human confirmation.

Input parameters:

- `amount` (number): USD to spend for BUY, shares for SELL
- `market` (string): Market id or conditionId (defaults to the event's main market)
- `outcome` (string): 0 = first outcome (Yes), 1 = second (No)
- `side` (string): BUY or SELL
- `slug` (string, required): Event slug

### `get_positions` (~54 tokens)

Get positions of a wallet

Open positions of a Polymarket trading account or its owner address: size, average price, current price, value and P&L.

Input parameters:

- `address` (string, required): 0x address (owner EOA or Deposit Wallet)

### `get_leaderboard` (~57 tokens)

Get the trader leaderboard

Top Polymarket traders by profit or volume over a window.

Input parameters:

- `limit` (integer): Rows (1-100, default 25)
- `metric` (string): Ranking metric
- `window` (string): Time window

### `get_agent_challenge` (~60 tokens)

Get an agent attestation challenge

Returns the canonical 'predictDEX Agent Attestation v1' message for your address. Sign it with EIP-191 personal_sign within 10 minutes and pass it to attest_agent.

Input parameters:

- `address` (string, required): Your 0x wallet address

### `attest_agent` (~91 tokens)

Attest as an agent (get a token)

Submit the signed attestation. Returns a 30-day agent token that unlocks gasless Polymarket account setup through predictDEX's signer for your address only. It grants no custody and no exemption from region rules.

Input parameters:

- `address` (string, required): 0x address that signed
- `message` (string, required): The exact challenge message
- `signature` (string, required): 0x EIP-191 signature

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/mk-dex-predictdex/predict#diagnostics

## Score history

- 2026-09-25: 76
- 2026-09-24: 76

## Common questions

### What is the predictDEX MCP server?

predictDEX is an MCP server listed in the public MCP registry as mk.dex/predictdex. Live Polymarket odds, order books, fee-inclusive quotes and non-custodial prediction trading. This page covers its hosted endpoint (https://predict.dex.mk/mcp).

### Is the predictDEX MCP server safe to use?

predictDEX scores 76 out of 100 on VerifyMCP. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

### What tools does the predictDEX MCP server expose?

predictDEX exposes 11 tools: search_markets, get_event, get_orderbook, get_price_history, quote_order, and 6 more. Their descriptions and schemas cost roughly 1,036 tokens of context every time the server is loaded.

### Does the predictDEX MCP server require authentication?

No. We connected to predictDEX without credentials and it answered, so anything it exposes is reachable by anyone who knows the address.

### Is the predictDEX MCP server still maintained?

predictDEX is still listed as active in the MCP registry. We last reached this channel on 25 September 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.

## Links

- Remote endpoint: https://predict.dex.mk/mcp
- Website: https://predict.dex.mk/agents
- Changelog RSS feed: https://verifymcp.io/servers/mk-dex-predictdex/predict.xml
- Changelog JSON feed: https://verifymcp.io/servers/mk-dex-predictdex/predict.json
- HTML version of this page: https://verifymcp.io/servers/mk-dex-predictdex/predict
