deribit-mcp 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +20 -0
- package/dist/api.js +32 -0
- package/dist/index.js +4 -0
- package/dist/server.js +50 -0
- package/package.json +44 -0
- package/server.json +20 -0
package/README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Deribit MCP
|
|
2
|
+
|
|
3
|
+
Deribit derivatives exchange: index prices, tickers, and supported indexes. No key required.
|
|
4
|
+
|
|
5
|
+
This file is self contained. It reads public data only and never writes to the machine. All output is bounded and honest about what could not be fetched.
|
|
6
|
+
|
|
7
|
+
## Tools
|
|
8
|
+
|
|
9
|
+
* `indexPrice` Deribit index price.
|
|
10
|
+
* `ticker` Deribit instrument ticker.
|
|
11
|
+
* `supported` List supported index names.
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm install
|
|
17
|
+
npm run build
|
|
18
|
+
node dist/index.js
|
|
19
|
+
```
|
|
20
|
+
|
package/dist/api.js
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
const BASE = 'https://www.deribit.com/api/v2';
|
|
2
|
+
const UA = 'mrfentmen-deribit-mcp/1.0 (https://github.com/mrfentmen)';
|
|
3
|
+
export class DeribitError extends Error {
|
|
4
|
+
}
|
|
5
|
+
async function get(url) {
|
|
6
|
+
const res = await fetch(url, { headers: { 'User-Agent': UA, Accept: 'application/json' }, signal: AbortSignal.timeout(20000) });
|
|
7
|
+
if (!res.ok)
|
|
8
|
+
throw new DeribitError(`Deribit returned ${res.status}`);
|
|
9
|
+
return (await res.json());
|
|
10
|
+
}
|
|
11
|
+
export async function indexPrice(args) {
|
|
12
|
+
const index = (args.index ?? 'btc_usd').toLowerCase();
|
|
13
|
+
const d = await get(`${BASE}/public/get_index_price?index_name=${encodeURIComponent(index)}`);
|
|
14
|
+
const r = d.result ?? {};
|
|
15
|
+
return `Deribit ${index}: ${r.index_price ?? '?'} (estimated delivery ${r.estimated_delivery_price ?? '?'})`;
|
|
16
|
+
}
|
|
17
|
+
export async function ticker(args) {
|
|
18
|
+
const instrument = (args.instrument ?? 'BTC-PERPETUAL').toUpperCase();
|
|
19
|
+
const d = await get(`${BASE}/public/ticker?instrument_name=${encodeURIComponent(instrument)}`);
|
|
20
|
+
const r = d.result ?? {};
|
|
21
|
+
return [
|
|
22
|
+
`${r.instrument_name ?? instrument}`,
|
|
23
|
+
`Last: ${r.last_price ?? '?'} | Mark: ${r.mark_price ?? '?'} | Index: ${r.index_price ?? '?'}`,
|
|
24
|
+
`Best bid: ${r.best_bid_price ?? '?'} | Best ask: ${r.best_ask_price ?? '?'}`,
|
|
25
|
+
`Funding 8h: ${r.funding_8h ?? '?'} | Open interest: ${r.open_interest ?? '?'} | Volume: ${r.volume ?? '?'}`,
|
|
26
|
+
].join('\n');
|
|
27
|
+
}
|
|
28
|
+
export async function supported(_args = {}) {
|
|
29
|
+
const d = await get(`${BASE}/public/get_supported_index_names`);
|
|
30
|
+
const names = (d.result ?? []).map((i) => i.index_name ?? '?');
|
|
31
|
+
return `Deribit supported indexes (${names.length}):\n${names.join(', ')}`;
|
|
32
|
+
}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
|
|
2
|
+
import { createServer } from "./server.js";
|
|
3
|
+
const main = async () => { const server = createServer(); await server.connect(new StdioServerTransport()); };
|
|
4
|
+
main().catch((error) => { console.error("Fatal error:", error); process.exit(1); });
|
package/dist/server.js
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
|
|
2
|
+
import { z } from 'zod';
|
|
3
|
+
import { indexPrice, ticker, supported } from './api.js';
|
|
4
|
+
const text = (value) => ({ content: [{ type: 'text', text: value }] });
|
|
5
|
+
const textError = (t) => ({ content: [{ type: "text", text: t }], isError: true });
|
|
6
|
+
const READ_ONLY = { readOnlyHint: true, openWorldHint: true };
|
|
7
|
+
const error = (e) => `Error: ${e instanceof Error ? e.message : String(e)}`;
|
|
8
|
+
export function createServer() {
|
|
9
|
+
const server = new McpServer({ name: 'deribit-mcp', version: '1.0.0' });
|
|
10
|
+
server.registerTool('indexPrice', {
|
|
11
|
+
title: "Index Price",
|
|
12
|
+
description: 'Deribit index price.',
|
|
13
|
+
inputSchema: z.object({ index: z.string().describe('Index name, default btc_usd.').optional() }),
|
|
14
|
+
annotations: READ_ONLY,
|
|
15
|
+
}, async (args) => {
|
|
16
|
+
try {
|
|
17
|
+
return text(await indexPrice(args));
|
|
18
|
+
}
|
|
19
|
+
catch (e) {
|
|
20
|
+
return textError(error(e));
|
|
21
|
+
}
|
|
22
|
+
});
|
|
23
|
+
server.registerTool('ticker', {
|
|
24
|
+
title: "Ticker",
|
|
25
|
+
description: 'Deribit instrument ticker.',
|
|
26
|
+
inputSchema: z.object({ instrument: z.string().describe('Instrument, default BTC-PERPETUAL.').optional() }),
|
|
27
|
+
annotations: READ_ONLY,
|
|
28
|
+
}, async (args) => {
|
|
29
|
+
try {
|
|
30
|
+
return text(await ticker(args));
|
|
31
|
+
}
|
|
32
|
+
catch (e) {
|
|
33
|
+
return textError(error(e));
|
|
34
|
+
}
|
|
35
|
+
});
|
|
36
|
+
server.registerTool('supported', {
|
|
37
|
+
title: "Supported",
|
|
38
|
+
description: 'List supported index names.',
|
|
39
|
+
inputSchema: z.object({}),
|
|
40
|
+
annotations: READ_ONLY,
|
|
41
|
+
}, async (args) => {
|
|
42
|
+
try {
|
|
43
|
+
return text(await supported(args));
|
|
44
|
+
}
|
|
45
|
+
catch (e) {
|
|
46
|
+
return textError(error(e));
|
|
47
|
+
}
|
|
48
|
+
});
|
|
49
|
+
return server;
|
|
50
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.0.0",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"repository": {
|
|
5
|
+
"type": "git",
|
|
6
|
+
"url": "https://github.com/mrfentmen/deribit-mcp.git"
|
|
7
|
+
},
|
|
8
|
+
"bin": {
|
|
9
|
+
"deribit-mcp": "./dist/index.js"
|
|
10
|
+
},
|
|
11
|
+
"main": "./dist/index.js",
|
|
12
|
+
"files": [
|
|
13
|
+
"dist",
|
|
14
|
+
"server.json",
|
|
15
|
+
"README.md"
|
|
16
|
+
],
|
|
17
|
+
"scripts": {
|
|
18
|
+
"build": "tsc -p tsconfig.json",
|
|
19
|
+
"start": "node dist/index.js",
|
|
20
|
+
"dev": "npm run build && node dist/index.js"
|
|
21
|
+
},
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
25
|
+
"zod": "^3.23.8"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@types/node": "^22.0.0",
|
|
29
|
+
"typescript": "^5.6.0"
|
|
30
|
+
},
|
|
31
|
+
"name": "deribit-mcp",
|
|
32
|
+
"description": "Deribit derivatives exchange: index prices, tickers, and supported indexes. No key required.",
|
|
33
|
+
"mcpName": "io.github.mrfentmen/deribit-mcp",
|
|
34
|
+
"keywords": [
|
|
35
|
+
"mcp",
|
|
36
|
+
"deribit",
|
|
37
|
+
"crypto",
|
|
38
|
+
"options",
|
|
39
|
+
"index"
|
|
40
|
+
],
|
|
41
|
+
"engines": {
|
|
42
|
+
"node": ">=20"
|
|
43
|
+
}
|
|
44
|
+
}
|
package/server.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "io.github.mrfentmen/deribit-mcp",
|
|
4
|
+
"description": "Deribit derivatives exchange: index prices, tickers, and supported indexes. No key required.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"url": "https://github.com/mrfentmen/deribit-mcp",
|
|
7
|
+
"source": "github"
|
|
8
|
+
},
|
|
9
|
+
"version": "1.0.0",
|
|
10
|
+
"packages": [
|
|
11
|
+
{
|
|
12
|
+
"registryType": "npm",
|
|
13
|
+
"identifier": "deribit-mcp",
|
|
14
|
+
"version": "1.0.0",
|
|
15
|
+
"transport": {
|
|
16
|
+
"type": "stdio"
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
}
|