# DepthFeed (remote · api.depthfeed.com)

Order-book depth & history for Polymarket, Kalshi & Limitless. Keyless demo, key for full access.

- Trust score: 66/100 (medium)
- Change this week: +3
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `api.depthfeed.com`: 66/100 (this document), [markdown](https://verifymcp.io/servers/com-depthfeed-depthfeed/api.md), [page](https://verifymcp.io/servers/com-depthfeed-depthfeed/api)

## Channel facts

- Endpoint: `https://api.depthfeed.com/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `0.1.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-08-03.

- **Endpoint Security**: 57/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation not fully verified: no authorisation is required to call this server, and 12 tool(s) never declared a destructiveHint. The MCP spec treats an absent hint as destructive by default, so we cannot call this surface safe.
  - HTTPS is enforced; there's no plaintext access path.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - 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**: 73/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 1528 tokens (~127/item across 12 items; 12 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 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.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

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

### Codex

```toml
[mcp_servers.com-depthfeed-depthfeed]
url = "https://api.depthfeed.com/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "com-depthfeed-depthfeed": {
      "type": "remote",
      "url": "https://api.depthfeed.com/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add com-depthfeed-depthfeed --url https://api.depthfeed.com/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  com-depthfeed-depthfeed:
    url: "https://api.depthfeed.com/mcp"
```

### Other

```json
{
  "mcpServers": {
    "com-depthfeed-depthfeed": {
      "type": "http",
      "url": "https://api.depthfeed.com/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-08-02 (score 66, +1)

No change was recorded against any check on this day. Stability & Change Management went from 20 to 23. That category is still filling its 30-day observation window: 6 days of observed history at the previous scan, 7 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-31 (score 65, 0)

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

### 2026-07-29 (score 65, +1)

No change was recorded against any check on this day. Stability & Change Management went from 7 to 10. That category is still filling its 30-day observation window: 2 days of observed history at the previous scan, 3 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-28 (score 64, +1)

No change was recorded against any check on this day. Stability & Change Management went from 3 to 7. That category is still filling its 30-day observation window: 1 days of observed history at the previous scan, 2 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-27 (score 63, 0)

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

### 2026-07-26 (score 63)

First indexed and scored.

## MCP tools (12)

### `polymarket_all_markets` (~91 tokens)

Paid data plan required. Return every active Polymarket market across all categories, not only crypto. AI execution credits do not unlock this export. The text result is one LLM-readable line per market: MARKET_NAME | OUTCOME PRICES | DEADLINE | MARKET_ID. The sweep fails closed if complete pagination cannot be verified and includes timestamp, count, source-page count, and SHA-256.

### `polymarket_search_markets` (~237 tokens)

List Polymarket up/down crypto prediction markets for a coin. Returns market id, slug, window, status and timing. Use the returned id/slug with polymarket_get_market or polymarket_get_snapshots.

Input parameters:

- `coin` (string): Crypto asset. Keyless/demo and Free plans are BTC-only; all 7 require a paid plan.
- `cursor` (string): Opaque pagination cursor from a previous response's pagination.next_cursor.
- `end_time` (string): Filter: markets active at/before this time as ms-epoch or ISO-8601. History is clamped to your plan's window.
- `limit` (integer): Page size (1–100).
- `resolved` (boolean): true → only resolved markets, false → only active.
- `start_time` (string): Filter: markets active at/after this time as ms-epoch or ISO-8601. History is clamped to your plan's window.
- `type` (string): Filter by market window/type, e.g. 5m, 15m, 1h, 4h, 24h.

### `polymarket_get_market` (~93 tokens)

Fetch a single Polymarket market by id (market_id) or by slug. Provide exactly one of market_id or slug.

Input parameters:

- `coin` (string): Crypto asset. Keyless/demo and Free plans are BTC-only; all 7 require a paid plan.
- `market_id` (string): Market id from polymarket_search_markets.
- `slug` (string): Market slug (alternative to market_id).

### `polymarket_get_snapshots` (~236 tokens)

Historical order-book snapshots (time series) for one Polymarket market. Use interval to downsample and include_orderbook for the full ladder. History depth is gated by plan.

Input parameters:

- `coin` (string): Crypto asset. Keyless/demo and Free plans are BTC-only; all 7 require a paid plan.
- `cursor` (string): Opaque pagination cursor from a previous response's pagination.next_cursor.
- `end_time` (string): End of time as ms-epoch or ISO-8601. History is clamped to your plan's window.
- `include_orderbook` (boolean): Include the full bid/ask ladder per snapshot (default top-of-book).
- `interval` (string): Downsample bucket, e.g. 1m, 5m, 1h — one snapshot per bucket.
- `limit` (integer): Page size (1–1000).
- `market_id` (string, required): Market id from polymarket_search_markets.
- `start_time` (string): Start of time as ms-epoch or ISO-8601. History is clamped to your plan's window.

### `kalshi_search_markets` (~113 tokens)

List Kalshi crypto markets (full yes/no depth, DepthFeed-exclusive). Requires a paid plan; keyless/Free returns a 402 upsell.

Input parameters:

- `coin` (string): Crypto asset. Keyless/demo and Free plans are BTC-only; all 7 require a paid plan.
- `cursor` (string): Opaque pagination cursor from a previous response's pagination.next_cursor.
- `limit` (integer): Page size (1–100).
- `type` (string): Filter by market window/type.

### `kalshi_get_orderbook` (~47 tokens)

Latest yes/no order-book depth for a Kalshi market by ticker. Requires a paid plan.

Input parameters:

- `ticker` (string, required): Kalshi market ticker from kalshi_search_markets.

### `kalshi_get_snapshots` (~139 tokens)

Historical yes/no depth snapshots for a Kalshi market by ticker. Requires a paid plan; history gated by plan window.

Input parameters:

- `cursor` (string): Opaque pagination cursor from a previous response's pagination.next_cursor.
- `end_time` (string): End of time as ms-epoch or ISO-8601. History is clamped to your plan's window.
- `limit` (integer): Page size (1–1000).
- `start_time` (string): Start of time as ms-epoch or ISO-8601. History is clamped to your plan's window.
- `ticker` (string, required): Kalshi market ticker.

### `limitless_search_markets` (~102 tokens)

List currently-open Limitless (Base CLOB) markets, DepthFeed-exclusive. Requires a paid plan.

Input parameters:

- `coin` (string): Crypto asset. Keyless/demo and Free plans are BTC-only; all 7 require a paid plan.
- `cursor` (string): Opaque pagination cursor from a previous response's pagination.next_cursor.
- `limit` (integer): Page size (1–100).
- `type` (string): Filter by market window/type.

### `limitless_get_orderbook` (~51 tokens)

Latest L2 depth (bids desc / asks asc) for a Limitless market by slug. Requires a paid plan.

Input parameters:

- `slug` (string, required): Limitless market slug from limitless_search_markets.

### `limitless_get_snapshots` (~142 tokens)

Historical L2 depth snapshots (time series) for a Limitless market by slug. Requires a paid plan; history gated by plan window.

Input parameters:

- `cursor` (string): Opaque pagination cursor from a previous response's pagination.next_cursor.
- `end_time` (string): End of time as ms-epoch or ISO-8601. History is clamped to your plan's window.
- `limit` (integer): Page size (1–1000).
- `slug` (string, required): Limitless market slug.
- `start_time` (string): Start of time as ms-epoch or ISO-8601. History is clamped to your plan's window.

### `screener` (~41 tokens)

Cross-venue top-of-book snapshot for all assets across Polymarket, Kalshi, and Binance — a one-shot overview of the current state. No arguments.

### `whoami` (~36 tokens)

Show the current session's plan, rate limits, history window, and coin access (reflects keyless demo vs. your API key).

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/com-depthfeed-depthfeed/api#diagnostics

## Score history

- 2026-08-03: 66
- 2026-08-02: 66
- 2026-08-01: 65
- 2026-07-31: 65
- 2026-07-30: 65
- 2026-07-29: 65
- 2026-07-28: 64
- 2026-07-27: 63
- 2026-07-26: 63

## Links

- Remote endpoint: https://api.depthfeed.com/mcp
- Website: https://depthfeed.com/
- Changelog RSS feed: https://verifymcp.io/servers/com-depthfeed-depthfeed/api/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/com-depthfeed-depthfeed/api/changelog.json
- HTML version of this page: https://verifymcp.io/servers/com-depthfeed-depthfeed/api
