deribit-mcp 1.0.0

MCP (Model Context Protocol) server for Deribit trading platform
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
[![License](https://img.shields.io/badge/license-MIT-blue)](./LICENSE)
[![Crates.io](https://img.shields.io/crates/v/deribit-mcp.svg)](https://crates.io/crates/deribit-mcp)
[![Downloads](https://img.shields.io/crates/d/deribit-mcp.svg)](https://crates.io/crates/deribit-mcp)
[![Stars](https://img.shields.io/github/stars/joaquinbejar/deribit-mcp.svg)](https://github.com/joaquinbejar/deribit-mcp/stargazers)
[![Issues](https://img.shields.io/github/issues/joaquinbejar/deribit-mcp.svg)](https://github.com/joaquinbejar/deribit-mcp/issues)
[![PRs](https://img.shields.io/github/issues-pr/joaquinbejar/deribit-mcp.svg)](https://github.com/joaquinbejar/deribit-mcp/pulls)
[![Build Status](https://img.shields.io/github/workflow/status/joaquinbejar/deribit-mcp/CI)](https://github.com/joaquinbejar/deribit-mcp/actions)
[![Coverage](https://img.shields.io/codecov/c/github/joaquinbejar/deribit-mcp)](https://codecov.io/gh/joaquinbejar/deribit-mcp)
[![Dependencies](https://img.shields.io/librariesio/github/joaquinbejar/deribit-mcp)](https://libraries.io/github/joaquinbejar/deribit-mcp)
[![Documentation](https://img.shields.io/badge/docs-latest-blue.svg)](https://docs.rs/deribit-mcp)
[![Wiki](https://img.shields.io/badge/wiki-latest-blue.svg)](https://deepwiki.com/joaquinbejar/deribit-mcp)

## `deribit-mcp`

Model Context Protocol (MCP) server for the Deribit cryptocurrency
derivatives platform. Single binary crate that adapts the
`deribit-base`, `deribit-http`, `deribit-websocket`, and
(optional) `deribit-fix` stack onto MCP's tool / resource /
prompt surface.

This is a **thin adapter** — every MCP tool is a translation
step over an upstream call. Auth, rate limiting, reconnect, and
wire codecs live in the sibling crates.

### Quick start

The fastest path is Docker — clone the repo, drop credentials
in `.env`, run compose. The binary also installs with
`cargo install`.

#### 1. Get credentials

Create a Deribit API key at <https://test.deribit.com>
(testnet) or <https://www.deribit.com> (mainnet). Account →
API → Add new key. You only need `client_id` and
`client_secret`. Public `Read` tools work without credentials;
`Account` / `Trading` tools require them.

#### 2. Configure

Copy `.env.example` to `.env` at the repository root and fill
in:

```bash
DERIBIT_NETWORK=testnet                # or `mainnet`
DERIBIT_CLIENT_ID=your_client_id
DERIBIT_CLIENT_SECRET=your_client_secret
# Optional — gates the HTTP endpoint with a static bearer:
DERIBIT_HTTP_BEARER_TOKEN=
RUST_LOG=info,deribit_mcp=debug
```

`.env` is git-ignored (mode `600` recommended). Credentials
never appear on the command line — they live in the
environment only.

#### 3. Deploy

**Docker compose** (recommended):

```bash
docker compose -f Docker/docker-compose.yml up -d
curl -sf http://127.0.0.1:8723/healthz && echo "ok"
```

**`docker run`**:

```bash
docker build -f Docker/Dockerfile -t deribit-mcp:local .
docker run -d --name deribit-mcp \
  --restart unless-stopped \
  --env-file .env \
  -p 127.0.0.1:8723:8723 \
  deribit-mcp:local \
  --transport=http --listen=0.0.0.0:8723
```

**`cargo install`**:

```bash
cargo install --path . --locked
deribit-mcp --transport=stdio
# or
deribit-mcp --transport=http --listen=0.0.0.0:8723
```

The HTTP runtime image is distroless — no shell, no package
manager, runs as `nonroot`. Health probe is `GET /healthz`
(unauthenticated, returns `200 OK` while the server accepts
requests).

#### 4. Enable trading (opt-in)

Trading tools (`place_order`, `edit_order`, `cancel_order`,
`cancel_all_by_*`) are absent from `tools/list` unless you
launch with `--allow-trading` AND credentials are configured.
Add a notional cap to keep blast-radius bounded:

```bash
deribit-mcp --transport=http --listen=0.0.0.0:8723 \
  --allow-trading --max-order-usd=100
```

The cap classifies inverse vs linear instruments and falls
back to the upstream mark price for market orders that don't
carry a price.

### Use from Claude Desktop

Edit `~/Library/Application Support/Claude/claude_desktop_config.json`
(macOS) or `%APPDATA%\Claude\claude_desktop_config.json`
(Windows).

#### Option A — HTTP (uses the running container)

```json
{
  "mcpServers": {
    "deribit": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "http://127.0.0.1:8723/mcp"
      ]
    }
  }
}
```

If you set `DERIBIT_HTTP_BEARER_TOKEN`, append
`"--header", "Authorization: Bearer YOUR_TOKEN"` to `args`.

#### Option B — stdio (no Docker)

```json
{
  "mcpServers": {
    "deribit": {
      "command": "/Users/you/.cargo/bin/deribit-mcp",
      "args": ["--transport=stdio"],
      "env": {
        "DERIBIT_NETWORK": "testnet",
        "DERIBIT_CLIENT_ID": "...",
        "DERIBIT_CLIENT_SECRET": "..."
      }
    }
  }
}
```

Quit Claude Desktop completely (⌘Q on macOS — including the
menubar icon) and relaunch. The slash menu should now show
`deribit:get_ticker`, `deribit:get_currencies`, etc.

### Sample prompts

Paste any of these into Claude Desktop after the `deribit`
connector is active. Each one exercises a specific tool,
resource, or curated prompt; together they cover the full
MCP surface.

#### Public market data — `Read` tools (no credentials)

- `get_server_time` — "Using the deribit MCP server, give me
  the current Deribit server time as a Unix-ms timestamp."
- `get_status` — "Using deribit, call `get_status` and tell me
  if any currency is locked."
- `get_currencies` — "Using deribit, list all currencies with
  their long names, fee precision, and minimum withdrawal
  fee."
- `get_index_price` — "Using deribit, fetch the BTC USD index
  price (`get_index_price`, `index_name=btc_usd`)."
- `get_ticker` — "Using deribit, give me the BTC-PERPETUAL
  ticker. Summarize in one line: mark, last, best bid, best
  ask, 24h volume."
- `get_instrument` — "Using deribit, call `get_instrument` for
  `BTC-PERPETUAL` and tell me the contract size, tick size,
  and minimum trade amount."
- `list_instruments` — "Using deribit, list every active
  `option` for `ETH` (`list_instruments`,
  `currency=ETH, kind=option, expired=false`). Group by
  expiration date."
- `get_order_book` — "Using deribit, fetch the BTC-PERPETUAL
  order book at depth 10 and show me the best 5 levels each
  side."
- `get_book_summary_by_currency` — "Using deribit, get a book
  summary for every BTC future
  (`get_book_summary_by_currency`, `currency=BTC,
  kind=future`). Sort by 24h volume descending."
- `get_book_summary_by_instrument` — "Using deribit, give me
  the book summary for `BTC-PERPETUAL` only."
- `get_last_trades` — "Using deribit, fetch the last 50 trades
  on `BTC-PERPETUAL` (`get_last_trades`, `count=50`). Tell me
  the buy/sell ratio."
- `get_tradingview_chart_data` — "Using deribit, pull 1-hour
  candles for BTC-PERPETUAL covering the last 24 hours via
  `get_tradingview_chart_data`. Identify the hour with the
  widest range."
- `get_funding_rate_history` — "Using deribit, fetch
  `get_funding_rate_history` for BTC-PERPETUAL covering the
  last 24h. Compute the mean."
- `get_historical_volatility` — "Using deribit, fetch
  `get_historical_volatility` for BTC and ETH. Compare the
  most recent values."

#### Authenticated reads — `Account` tools (credentials
required)

- `get_account_summary` — "Using deribit, give me
  `get_account_summary` for BTC with `extended=true`. Show
  equity, initial margin, maintenance margin, P&L, available
  balance."
- `get_positions` — "Using deribit, list my open BTC
  positions. Flag any with margin utilization above 70%."
- `get_subaccounts` — "Using deribit, list my subaccounts
  (`get_subaccounts`, `with_portfolio=true`)."
- `get_transaction_log` — "Using deribit,
  `get_transaction_log` for BTC over the last 24 hours. Group
  by `type`."
- `get_deposits` — "Using deribit, show my last 10 BTC
  deposits (`get_deposits`, `currency=BTC, count=10`)."
- `get_withdrawals` — "Using deribit, show my last 10 BTC
  withdrawals."
- `get_open_orders_by_currency` — "Using deribit, list every
  open BTC order. Mark anything older than 24 hours."
- `get_open_orders_by_instrument` — "Using deribit, list open
  orders on `BTC-PERPETUAL` only."
- `get_user_trades_by_currency` — "Using deribit, fetch the
  last 50 BTC user trades (`get_user_trades_by_currency`,
  `currency=BTC, count=50`). Compute net realized P&L."
- `get_user_trades_by_instrument` — "Using deribit, fetch user
  trades for `BTC-PERPETUAL` over the last 24 hours."

#### Order entry — `Trading` tools (`--allow-trading`)

Always test on testnet first. Use a small `--max-order-usd`
cap.

- `place_order` (limit buy) — "Using deribit, place a buy
  limit order for 10 USD of `BTC-PERPETUAL` at half the
  current mark price, post-only, label
  `prompt-test`."
- `place_order` (stop-limit) — "Using deribit, place a
  stop-limit sell on `BTC-PERPETUAL`: amount 10, price 90000,
  trigger_price 91000, trigger=`mark_price`."
- `edit_order` — "Using deribit, edit order
  `<order_id>` to amount 20 and price 51000."
- `cancel_order` — "Using deribit, cancel order
  `<order_id>`."
- `cancel_all_by_currency` — "Using deribit, cancel every
  open BTC order (`cancel_all_by_currency`, `currency=BTC`).
  Tell me how many were cancelled."
- `cancel_all_by_instrument` — "Using deribit, cancel every
  open `BTC-PERPETUAL` order."

#### Resources

- `deribit://currencies` (static) — "Using deribit, read the
  resource `deribit://currencies` and list each `currency`
  with its `withdrawal_fee`."
- `deribit://instruments/{currency}` (template) — "Using
  deribit, read `deribit://instruments/BTC` and tell me how
  many futures are listed."
- `deribit://book/{instrument}` (live) — "Using deribit, read
  `deribit://book/BTC-PERPETUAL` and show the top 5 bids and
  asks."
- `deribit://ticker/{instrument}` (live) — "Using deribit,
  read `deribit://ticker/BTC-PERPETUAL`."
- `deribit://trades/{instrument}` (live) — "Using deribit,
  read `deribit://trades/BTC-PERPETUAL` and tell me the
  trade-size distribution."

#### Curated prompts

MCP prompts are exposed as slash-commands in Claude Desktop —
the user (not Claude) types them. Once the slash-command is
expanded the curated message pair lands in the conversation
and Claude follows the instructions, calling the tools the
prompt names. The naming convention is
`/mcp__<server>__<prompt>` (double underscores).

- `daily_options_summary` — type
  `/mcp__deribit__daily_options_summary` and supply
  `currency=BTC`, `horizon_days=7`. Drives Claude through
  `list_instruments`, `get_book_summary_by_currency`, and
  `get_historical_volatility`, then produces a four-section
  summary (ATM IV vs RV headline, top calls + puts by OI,
  skew commentary, caveats).
- `funding_snapshot` — type
  `/mcp__deribit__funding_snapshot` and supply `currency=BTC`,
  `lookback_hours=24`. Drives Claude through
  `list_instruments` (perpetual filter) and
  `get_funding_rate_history`, then produces a table (latest,
  mean / median / p10 / p90, sign breakdown, outliers,
  caveats).
- `position_review` — type
  `/mcp__deribit__position_review` and supply `currency=BTC`,
  `include_history=true`. Drives Claude through
  `get_account_summary`, `get_positions`,
  `get_open_orders_by_currency`, and (when
  `include_history=true`) `get_user_trades_by_currency`, then
  produces a report (headline, positions, open orders, flags,
  recent trades, caveats). When credentials are missing the
  prompt returns a structured warning instead.

If you want Claude to perform an equivalent workflow without
invoking the slash-command, ask directly — for example: "Using
deribit, summarize BTC options expiring in the next 7 days.
Run `list_instruments` (kind=option), filter by
`expiration_timestamp` within 7 days, then
`get_book_summary_by_currency` and `get_historical_volatility`.
Produce: ATM IV vs RV headline; top 3 calls and puts by open
interest; skew commentary; caveats." That bypasses the
curated prompt but reaches the same result.

#### Negative paths (gating verification)

- "Using deribit, try `place_order` with no credentials
  configured. What does the registry say?" (Should be absent
  from `tools/list`.)
- "Using deribit, call `get_account_summary` for currency
  `XYZ`." (Should return a structured `Validation` error.)

### Capability surface (v1.0.0)

| Class | Count | Examples |
|---|---:|---|
| `Read` tools (no auth) | 14 | `get_ticker`, `get_currencies`, `get_order_book`, `get_book_summary_by_currency`, `get_funding_rate_history`, `get_historical_volatility`, `get_last_trades`, `get_tradingview_chart_data`, `get_index_price`, `get_server_time`, `get_status` |
| `Account` tools (creds) | 10 | `get_account_summary`, `get_positions`, `get_subaccounts`, `get_open_orders_by_currency`, `get_user_trades_by_currency`, `get_transaction_log`, `get_deposits`, `get_withdrawals` |
| `Trading` tools (`--allow-trading`) | 5 | `place_order`, `edit_order`, `cancel_order`, `cancel_all_by_currency`, `cancel_all_by_instrument` |
| Resources | 1 + 4 templates | `deribit://currencies`, `deribit://instruments/{currency}`, `deribit://book/{instrument}`, `deribit://ticker/{instrument}`, `deribit://trades/{instrument}` |
| Prompts | 3 | `daily_options_summary`, `funding_snapshot`, `position_review` |

The MCP wire shape is locked under SemVer from 1.0.0 — adding
/ renaming / removing tool fields, resource URIs, error
variants, or prompt arguments requires a 2.0 major bump (see
`CHANGELOG.md`).

### Configuration reference

| Setting | CLI | Env var | Default |
|---|---|---|---|
| Network | `--testnet` / `--mainnet` | `DERIBIT_NETWORK=testnet\|mainnet` or `DERIBIT_ENDPOINT=<url>` | testnet |
| Credentials || `DERIBIT_CLIENT_ID` / `DERIBIT_CLIENT_SECRET` | none |
| Trading opt-in | `--allow-trading` | `DERIBIT_ALLOW_TRADING=1` | off |
| Notional cap | `--max-order-usd=N` | `DERIBIT_MAX_ORDER_USD=N` | unlimited |
| MCP transport | `--transport=stdio\|http` | `DERIBIT_MCP_TRANSPORT` | stdio |
| HTTP listen | `--listen=ADDR:PORT` | `DERIBIT_HTTP_LISTEN` | `127.0.0.1:8723` |
| HTTP bearer || `DERIBIT_HTTP_BEARER_TOKEN` | none (anonymous) |
| Order transport | `--order-transport=http\|fix` | `DERIBIT_ORDER_TRANSPORT` | http |
| Log filter || `RUST_LOG` | `info` |
| Log format | `--log-format=text\|json` | `DERIBIT_LOG_FORMAT` | text on stdio, json on http |

CLI flags win over env vars; env vars win over `.env`; `.env`
wins over built-in defaults.

### Observability

Each MCP request emits two structured events on stderr (stdio)
/ stdout (http) — entry and outcome — with target
`deribit_mcp::request` and `elapsed_ms`:

```bash
docker logs -f deribit-mcp 2>&1 | grep deribit_mcp::request
```

```
INFO deribit_mcp::request tools/call tool="get_ticker"
INFO deribit_mcp::request tools/call ok tool="get_ticker" elapsed_ms=75
WARN deribit_mcp::request tools/call error tool="missing" elapsed_ms=0 error="..."
```

Secrets (`client_secret`, `access_token`, `refresh_token`,
`http_bearer_token`) are redacted before they reach any
tracing sink.

### Troubleshooting

| Symptom | Likely cause | Fix |
|---|---|---|
| `tools/call` returns `-32601 method not found` | Old image without the `ServerHandler::call_tool` override | Rebuild: `docker compose -f Docker/docker-compose.yml build --no-cache` |
| Every `/mcp` request returns `401` | `DERIBIT_HTTP_BEARER_TOKEN` set in env (even empty `=` lines) | Remove the line from `.env` or pass `Authorization: Bearer ...` from the client |
| `Upstream { error decoding response body }` | Custom endpoint URL missing `/api/v2` suffix | Use `DERIBIT_NETWORK=testnet\|mainnet` instead of `DERIBIT_ENDPOINT`; the canonical paths are auto-applied |
| Account / Trading tools missing from `tools/list` | Credentials not loaded | Verify `docker inspect <id>` shows `DERIBIT_CLIENT_ID` and `DERIBIT_CLIENT_SECRET` |
| Trading tools missing despite credentials | `--allow-trading` not set | Add it to the `command:` block in compose |
| Claude Desktop says "connector not responding" | Cached old session in `mcp-remote` | Quit Claude Desktop with ⌘Q (also the menubar icon), relaunch |
| `mcp-remote` rejects with "Invalid input in structuredContent" | Old server before scalar-wrap fix | Pull / rebuild — the adapter wraps non-object payloads in `{"value": ...}` since v1.0 |

Build problems? `cargo install` requires `cmake`, `perl`,
`pkg-config`, and `libssl-dev` (or `openssl-devel`) for the
FIX dependency chain. Docker handles this automatically.

### Crate layout

- [`config`] — CLI argument and `.env` resolution.
- [`context`] — `AdapterContext` shared across handlers.
- [`error`] — `AdapterError` and `From` impls for upstream errors.
- [`server`] — `rmcp` Server scaffold.
- [`observability`] — `tracing` setup and secret redaction.
- [`tools`] — `Read` / `Account` / `Trading` tool families.
- [`resources`] — static and live resource families.
- [`prompts`] — curated MCP prompts (registry + handlers).
- [`prelude`] — curated re-exports for downstream consumers.

## Contribution and Contact

We welcome contributions to this project! If you would like to contribute, please follow these steps:

1. Fork the repository.
2. Create a new branch for your feature or bug fix.
3. Make your changes and ensure that the project still builds and all tests pass.
4. Commit your changes and push your branch to your forked repository.
5. Submit a pull request to the main repository.

If you have any questions, issues, or would like to provide feedback, please feel free to contact the project maintainer:

### **Contact Information**
- **Author**: Joaquín Béjar García
- **Email**: jb@taunais.com
- **Telegram**: [@joaquin_bejar]https://t.me/joaquin_bejar
- **Repository**: <https://github.com/joaquinbejar/deribit-mcp>
- **Documentation**: <https://docs.rs/deribit-mcp>

We appreciate your interest and look forward to your contributions!

## ✍️ License

Licensed under MIT license

## Disclaimer

This software is not officially associated with Deribit. Trading financial instruments carries risk, and this library is provided as-is without any guarantees. Always test thoroughly with a demo account before using in a live trading environment. The MCP server exposes order entry only when explicitly enabled via `--allow-trading`; the operator is responsible for any trades placed through it.