binance-futures-mcp 1.0.4__py3-none-any.whl → 1.0.7__py3-none-any.whl
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.
- {binance_futures_mcp-1.0.4.dist-info → binance_futures_mcp-1.0.7.dist-info}/METADATA +57 -43
- binance_futures_mcp-1.0.7.dist-info/RECORD +9 -0
- {binance_futures_mcp-1.0.4.dist-info → binance_futures_mcp-1.0.7.dist-info}/WHEEL +1 -1
- binance_mcp/server.py +38 -4
- binance_futures_mcp-1.0.4.dist-info/RECORD +0 -9
- {binance_futures_mcp-1.0.4.dist-info/licenses → binance_futures_mcp-1.0.7.dist-info}/LICENSE +0 -0
- {binance_futures_mcp-1.0.4.dist-info → binance_futures_mcp-1.0.7.dist-info}/entry_points.txt +0 -0
- {binance_futures_mcp-1.0.4.dist-info → binance_futures_mcp-1.0.7.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.1
|
2
2
|
Name: binance-futures-mcp
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.7
|
4
4
|
Summary: A Model Context Protocol server for Binance Futures API
|
5
5
|
Home-page: https://github.com/alexcandrabersiva/bin-mcp
|
6
6
|
Author: Binance MCP Server
|
@@ -20,20 +20,9 @@ Classifier: Topic :: Office/Business :: Financial :: Investment
|
|
20
20
|
Requires-Python: >=3.8
|
21
21
|
Description-Content-Type: text/markdown
|
22
22
|
License-File: LICENSE
|
23
|
-
Requires-Dist: mcp>=1.0.0
|
24
|
-
Requires-Dist: aiohttp>=3.8.0
|
25
|
-
Requires-Dist: pydantic>=2.0.0
|
26
|
-
Dynamic: author
|
27
|
-
Dynamic: classifier
|
28
|
-
Dynamic: description
|
29
|
-
Dynamic: description-content-type
|
30
|
-
Dynamic: home-page
|
31
|
-
Dynamic: keywords
|
32
|
-
Dynamic: license-file
|
33
|
-
Dynamic: project-url
|
34
|
-
Dynamic: requires-dist
|
35
|
-
Dynamic: requires-python
|
36
|
-
Dynamic: summary
|
23
|
+
Requires-Dist: mcp (>=1.0.0)
|
24
|
+
Requires-Dist: aiohttp (>=3.8.0)
|
25
|
+
Requires-Dist: pydantic (>=2.0.0)
|
37
26
|
|
38
27
|
# Binance MCP Server
|
39
28
|
|
@@ -43,21 +32,23 @@ A Model Context Protocol (MCP) server that provides comprehensive access to Bina
|
|
43
32
|
|
44
33
|
1. **Install the package:**
|
45
34
|
```bash
|
46
|
-
pip install
|
35
|
+
pip install binance_futures_mcp
|
47
36
|
```
|
48
37
|
|
49
38
|
2. **Run the server:**
|
50
39
|
```bash
|
51
|
-
uvx
|
40
|
+
uvx binance_futures_mcp --binance-api-key "your_key" --binance-secret-key "your_secret"
|
52
41
|
```
|
53
42
|
|
54
43
|
3. **Or configure in VS Code** by adding to your `settings.json`:
|
55
44
|
```json
|
56
45
|
{
|
57
|
-
"mcp
|
58
|
-
"
|
59
|
-
"
|
60
|
-
|
46
|
+
"mcp": {
|
47
|
+
"servers": {
|
48
|
+
"binance": {
|
49
|
+
"command": "uvx",
|
50
|
+
"args": ["--from", "binance_futures_mcp", "binance-mcp-server.exe", "--binance-api-key", "your_key", "--binance-secret-key", "your_secret"]
|
51
|
+
}
|
61
52
|
}
|
62
53
|
}
|
63
54
|
}
|
@@ -97,7 +88,7 @@ A Model Context Protocol (MCP) server that provides comprehensive access to Bina
|
|
97
88
|
## Installation
|
98
89
|
|
99
90
|
```bash
|
100
|
-
pip install
|
91
|
+
pip install binance_futures_mcp
|
101
92
|
```
|
102
93
|
|
103
94
|
### Development Installation
|
@@ -120,11 +111,12 @@ Add to your VS Code `settings.json`:
|
|
120
111
|
|
121
112
|
```json
|
122
113
|
{
|
123
|
-
"mcp
|
124
|
-
"
|
125
|
-
"
|
126
|
-
|
127
|
-
|
114
|
+
"mcp": {
|
115
|
+
"servers": {
|
116
|
+
"binance": {
|
117
|
+
"command": "uvx",
|
118
|
+
"args": ["--from", "binance_futures_mcp", "binance-mcp-server.exe", "--binance-api-key", "your_api_key", "--binance-secret-key", "your_secret_key"]
|
119
|
+
}
|
128
120
|
}
|
129
121
|
}
|
130
122
|
}
|
@@ -139,8 +131,7 @@ Add to your Cursor configuration file (`.cursor/mcp.json`):
|
|
139
131
|
"servers": {
|
140
132
|
"binance": {
|
141
133
|
"command": "uvx",
|
142
|
-
"args": ["binance-
|
143
|
-
"env": {}
|
134
|
+
"args": ["--from", "binance_futures_mcp", "binance-mcp-server.exe", "--binance-api-key", "your_api_key", "--binance-secret-key", "your_secret_key"]
|
144
135
|
}
|
145
136
|
}
|
146
137
|
}
|
@@ -155,8 +146,7 @@ Add to your Windsurf configuration (`.windsurf/mcp.json`):
|
|
155
146
|
"mcpServers": {
|
156
147
|
"binance": {
|
157
148
|
"command": "uvx",
|
158
|
-
"args": ["binance-
|
159
|
-
"env": {}
|
149
|
+
"args": ["--from", "binance_futures_mcp", "binance-mcp-server.exe", "--binance-api-key", "your_api_key", "--binance-secret-key", "your_secret_key"]
|
160
150
|
}
|
161
151
|
}
|
162
152
|
}
|
@@ -174,8 +164,7 @@ Add to your Claude Desktop configuration file:
|
|
174
164
|
"mcpServers": {
|
175
165
|
"binance": {
|
176
166
|
"command": "uvx",
|
177
|
-
"args": ["binance-
|
178
|
-
"env": {}
|
167
|
+
"args": ["--from", "binance_futures_mcp", "binance-mcp-server.exe", "--binance-api-key", "your_api_key", "--binance-secret-key", "your_secret_key"]
|
179
168
|
}
|
180
169
|
}
|
181
170
|
}
|
@@ -187,9 +176,10 @@ Add to your Claude Desktop configuration file:
|
|
187
176
|
|
188
177
|
2. **Set API credentials**: Replace `your_api_key` and `your_secret_key` with your actual Binance API credentials.
|
189
178
|
|
190
|
-
|
191
|
-
- `
|
192
|
-
- `binance-mcp-server` (
|
179
|
+
2. **Alternative commands**: You can also use:
|
180
|
+
- `uvx binance_futures_mcp` (direct package execution)
|
181
|
+
- `uvx --from binance_futures_mcp binance-mcp-server.exe` (explicit executable)
|
182
|
+
- `pip install binance_futures_mcp && python -m binance_mcp`
|
193
183
|
|
194
184
|
4. **Python environment**: Using `uvx` automatically handles the Python environment.
|
195
185
|
|
@@ -223,15 +213,15 @@ export BINANCE_SECRET_KEY="your_secret_key_here"
|
|
223
213
|
python -m binance_mcp
|
224
214
|
|
225
215
|
# Or using uvx (no installation needed)
|
226
|
-
uvx
|
216
|
+
uvx binance_futures_mcp
|
227
217
|
|
228
218
|
# With API credentials as arguments
|
229
|
-
uvx
|
219
|
+
uvx binance_futures_mcp --binance-api-key "your_key" --binance-secret-key "your_secret"
|
230
220
|
```
|
231
221
|
|
232
222
|
### Available Tools
|
233
223
|
|
234
|
-
The server provides
|
224
|
+
The server provides 35 tools organized into categories:
|
235
225
|
|
236
226
|
#### Account Information (5 tools)
|
237
227
|
- `get_account_info` - Get futures account information
|
@@ -264,19 +254,21 @@ The server provides 32 tools organized into categories:
|
|
264
254
|
- `change_position_mode` - Change position mode
|
265
255
|
- `modify_position_margin` - Modify position margin
|
266
256
|
|
267
|
-
#### Market Data (
|
257
|
+
#### Market Data (10 tools)
|
268
258
|
- `get_exchange_info` - Get trading rules and symbol info
|
269
259
|
- `get_book_ticker` - Get best bid/ask prices
|
270
260
|
- `get_price_ticker` - Get latest prices
|
261
|
+
- `get_24hr_ticker` - Get 24hr price change statistics
|
262
|
+
- `get_taker_buy_sell_volume` - Get taker buy/sell volume ratio
|
271
263
|
- `get_order_book` - Get order book depth
|
272
264
|
- `get_klines` - Get candlestick data
|
273
265
|
- `get_mark_price` - Get mark price and funding rate
|
274
266
|
- `get_aggregate_trades` - Get aggregate trade data
|
267
|
+
- `get_funding_rate_history` - Get funding rate history
|
275
268
|
|
276
|
-
#### Trading History (
|
269
|
+
#### Trading History (2 tools)
|
277
270
|
- `get_account_trades` - Get account trade history
|
278
271
|
- `get_income_history` - Get income history
|
279
|
-
- `get_funding_rate_history` - Get funding rate history
|
280
272
|
|
281
273
|
## Example Usage
|
282
274
|
|
@@ -332,6 +324,28 @@ The server provides 32 tools organized into categories:
|
|
332
324
|
}
|
333
325
|
```
|
334
326
|
|
327
|
+
### Get 24hr Price Statistics
|
328
|
+
|
329
|
+
```json
|
330
|
+
{
|
331
|
+
"tool": "get_24hr_ticker",
|
332
|
+
"arguments": {
|
333
|
+
"symbol": "BTCUSDT"
|
334
|
+
}
|
335
|
+
}
|
336
|
+
```
|
337
|
+
|
338
|
+
### Get Taker Buy/Sell Volume Ratio
|
339
|
+
|
340
|
+
```json
|
341
|
+
{
|
342
|
+
"tool": "get_taker_buy_sell_volume",
|
343
|
+
"arguments": {
|
344
|
+
"symbol": "BTCUSDT"
|
345
|
+
}
|
346
|
+
}
|
347
|
+
```
|
348
|
+
|
335
349
|
## Security
|
336
350
|
|
337
351
|
### API Key Security
|
@@ -0,0 +1,9 @@
|
|
1
|
+
binance_mcp/__init__.py,sha256=ExUxc1kp3GoSwmEtC7eGgFMZlvSQ4IdW1T5xhw-NT98,106
|
2
|
+
binance_mcp/__main__.py,sha256=_9DBrtv0PAvjLjCqKk_cMfGtkqSUOcmU6HeQKFjuFMQ,214
|
3
|
+
binance_mcp/server.py,sha256=mBuB1HX6xf5GSviYV5oIPqKz2werdBiibyxTUA-qnpY,41669
|
4
|
+
binance_futures_mcp-1.0.7.dist-info/LICENSE,sha256=zqfwopvOi7kOx5YVOnehgmRFR-IU3x1n9JEShr3QOYg,1075
|
5
|
+
binance_futures_mcp-1.0.7.dist-info/METADATA,sha256=GgB3I-rPgq5YKmV9Usi-RYvAtpQ9rk7LowADz1-Q5j8,11418
|
6
|
+
binance_futures_mcp-1.0.7.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
7
|
+
binance_futures_mcp-1.0.7.dist-info/entry_points.txt,sha256=-1iVs9AF7JQBS-xMichP9hQhbCY7YfLFRJVaNKwuN34,69
|
8
|
+
binance_futures_mcp-1.0.7.dist-info/top_level.txt,sha256=RqGhe1caZUvBF_ezvTiLZD8kVS25eiWVkfJfmoND9m8,12
|
9
|
+
binance_futures_mcp-1.0.7.dist-info/RECORD,,
|
binance_mcp/server.py
CHANGED
@@ -48,7 +48,7 @@ class BinanceClient:
|
|
48
48
|
timeout=timeout,
|
49
49
|
connector=connector,
|
50
50
|
headers={
|
51
|
-
'User-Agent': 'binance-mcp-server/1.0.
|
51
|
+
'User-Agent': 'binance-mcp-server/1.0.7',
|
52
52
|
'Content-Type': 'application/x-www-form-urlencoded'
|
53
53
|
}
|
54
54
|
)
|
@@ -472,6 +472,17 @@ class BinanceMCPServer:
|
|
472
472
|
"required": []
|
473
473
|
}
|
474
474
|
),
|
475
|
+
Tool(
|
476
|
+
name="get_24hr_ticker",
|
477
|
+
description="Get 24hr ticker price change statistics",
|
478
|
+
inputSchema={
|
479
|
+
"type": "object",
|
480
|
+
"properties": {
|
481
|
+
"symbol": {"type": "string", "description": "Trading pair symbol (optional, if not provided returns all symbols)"}
|
482
|
+
},
|
483
|
+
"required": []
|
484
|
+
}
|
485
|
+
),
|
475
486
|
Tool(
|
476
487
|
name="get_order_book",
|
477
488
|
description="Get order book for a symbol",
|
@@ -539,6 +550,21 @@ class BinanceMCPServer:
|
|
539
550
|
"required": []
|
540
551
|
}
|
541
552
|
),
|
553
|
+
Tool(
|
554
|
+
name="get_taker_buy_sell_volume",
|
555
|
+
description="Get taker buy/sell volume ratio statistics",
|
556
|
+
inputSchema={
|
557
|
+
"type": "object",
|
558
|
+
"properties": {
|
559
|
+
"symbol": {"type": "string", "description": "Trading pair symbol"},
|
560
|
+
"period": {"type": "string", "description": "Period for the data (5m, 15m, 30m, 1h, 2h, 4h, 6h, 12h, 1d)"},
|
561
|
+
"start_time": {"type": "integer", "description": "Start timestamp in ms"},
|
562
|
+
"end_time": {"type": "integer", "description": "End timestamp in ms"},
|
563
|
+
"limit": {"type": "integer", "description": "Number of entries (max 500, default 30)"}
|
564
|
+
},
|
565
|
+
"required": ["symbol", "period"]
|
566
|
+
}
|
567
|
+
),
|
542
568
|
|
543
569
|
# Trading History Tools
|
544
570
|
Tool(
|
@@ -579,9 +605,9 @@ class BinanceMCPServer:
|
|
579
605
|
|
580
606
|
# Check if API credentials are configured for authenticated endpoints
|
581
607
|
unauthenticated_tools = [
|
582
|
-
"get_exchange_info", "get_price_ticker", "get_book_ticker",
|
608
|
+
"get_exchange_info", "get_price_ticker", "get_24hr_ticker", "get_book_ticker",
|
583
609
|
"get_order_book", "get_klines", "get_mark_price",
|
584
|
-
"get_aggregate_trades", "get_funding_rate_history"
|
610
|
+
"get_aggregate_trades", "get_funding_rate_history", "get_taker_buy_sell_volume"
|
585
611
|
]
|
586
612
|
|
587
613
|
if not self.config.api_key or not self.config.secret_key:
|
@@ -713,6 +739,11 @@ class BinanceMCPServer:
|
|
713
739
|
if "symbol" in arguments:
|
714
740
|
params["symbol"] = arguments["symbol"]
|
715
741
|
result = await client._make_request("GET", "/fapi/v1/ticker/price", params)
|
742
|
+
elif name == "get_24hr_ticker":
|
743
|
+
params = {}
|
744
|
+
if "symbol" in arguments:
|
745
|
+
params["symbol"] = arguments["symbol"]
|
746
|
+
result = await client._make_request("GET", "/fapi/v1/ticker/24hr", params)
|
716
747
|
elif name == "get_order_book":
|
717
748
|
params = {
|
718
749
|
"symbol": arguments["symbol"],
|
@@ -733,6 +764,9 @@ class BinanceMCPServer:
|
|
733
764
|
elif name == "get_funding_rate_history":
|
734
765
|
params = {k: v for k, v in arguments.items() if v is not None}
|
735
766
|
result = await client._make_request("GET", "/fapi/v1/fundingRate", params)
|
767
|
+
elif name == "get_taker_buy_sell_volume":
|
768
|
+
params = {k: v for k, v in arguments.items() if v is not None}
|
769
|
+
result = await client._make_request("GET", "/futures/data/takerlongshortRatio", params)
|
736
770
|
|
737
771
|
# Trading History Tools
|
738
772
|
elif name == "get_account_trades":
|
@@ -782,7 +816,7 @@ async def main():
|
|
782
816
|
write_stream,
|
783
817
|
InitializationOptions(
|
784
818
|
server_name="binance-futures-mcp-server",
|
785
|
-
server_version="1.0.
|
819
|
+
server_version="1.0.7",
|
786
820
|
capabilities={
|
787
821
|
"tools": {}
|
788
822
|
}
|
@@ -1,9 +0,0 @@
|
|
1
|
-
binance_futures_mcp-1.0.4.dist-info/licenses/LICENSE,sha256=zqfwopvOi7kOx5YVOnehgmRFR-IU3x1n9JEShr3QOYg,1075
|
2
|
-
binance_mcp/__init__.py,sha256=ExUxc1kp3GoSwmEtC7eGgFMZlvSQ4IdW1T5xhw-NT98,106
|
3
|
-
binance_mcp/__main__.py,sha256=_9DBrtv0PAvjLjCqKk_cMfGtkqSUOcmU6HeQKFjuFMQ,214
|
4
|
-
binance_mcp/server.py,sha256=ApB26p9GyoEoJzc0AyZhDG_Z6BMq2i43irVgf88hoFw,39605
|
5
|
-
binance_futures_mcp-1.0.4.dist-info/METADATA,sha256=uIvIKbrdj81WlYcXyRgxFsUd8ZyWEYPZ6-AvLHv0bVU,11022
|
6
|
-
binance_futures_mcp-1.0.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
7
|
-
binance_futures_mcp-1.0.4.dist-info/entry_points.txt,sha256=-1iVs9AF7JQBS-xMichP9hQhbCY7YfLFRJVaNKwuN34,69
|
8
|
-
binance_futures_mcp-1.0.4.dist-info/top_level.txt,sha256=RqGhe1caZUvBF_ezvTiLZD8kVS25eiWVkfJfmoND9m8,12
|
9
|
-
binance_futures_mcp-1.0.4.dist-info/RECORD,,
|
{binance_futures_mcp-1.0.4.dist-info/licenses → binance_futures_mcp-1.0.7.dist-info}/LICENSE
RENAMED
File without changes
|
{binance_futures_mcp-1.0.4.dist-info → binance_futures_mcp-1.0.7.dist-info}/entry_points.txt
RENAMED
File without changes
|
File without changes
|