binance-futures-mcp 1.0.1__py3-none-any.whl → 1.0.3__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.1.dist-info → binance_futures_mcp-1.0.3.dist-info}/METADATA +16 -5
- binance_futures_mcp-1.0.3.dist-info/RECORD +9 -0
- {binance_futures_mcp-1.0.1.dist-info → binance_futures_mcp-1.0.3.dist-info}/WHEEL +1 -1
- binance_mcp/server.py +14 -4
- binance_futures_mcp-1.0.1.dist-info/RECORD +0 -9
- {binance_futures_mcp-1.0.1.dist-info → binance_futures_mcp-1.0.3.dist-info}/entry_points.txt +0 -0
- {binance_futures_mcp-1.0.1.dist-info → binance_futures_mcp-1.0.3.dist-info/licenses}/LICENSE +0 -0
- {binance_futures_mcp-1.0.1.dist-info → binance_futures_mcp-1.0.3.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: binance-futures-mcp
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.3
|
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,9 +20,20 @@ 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
|
24
|
-
Requires-Dist: aiohttp
|
25
|
-
Requires-Dist: pydantic
|
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
|
26
37
|
|
27
38
|
# Binance MCP Server
|
28
39
|
|
@@ -0,0 +1,9 @@
|
|
1
|
+
binance_futures_mcp-1.0.3.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=aSlbwCFr5EV9X_vt70eK6-ACVkMl6IxNDkNA4yaRW1o,38583
|
5
|
+
binance_futures_mcp-1.0.3.dist-info/METADATA,sha256=xXqrBUjb3_r22RJD9l6FWRjC__4ygDfjcwz3KlkXTXg,11022
|
6
|
+
binance_futures_mcp-1.0.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
7
|
+
binance_futures_mcp-1.0.3.dist-info/entry_points.txt,sha256=-1iVs9AF7JQBS-xMichP9hQhbCY7YfLFRJVaNKwuN34,69
|
8
|
+
binance_futures_mcp-1.0.3.dist-info/top_level.txt,sha256=RqGhe1caZUvBF_ezvTiLZD8kVS25eiWVkfJfmoND9m8,12
|
9
|
+
binance_futures_mcp-1.0.3.dist-info/RECORD,,
|
binance_mcp/server.py
CHANGED
@@ -248,7 +248,11 @@ class BinanceMCPServer:
|
|
248
248
|
inputSchema={
|
249
249
|
"type": "object",
|
250
250
|
"properties": {
|
251
|
-
"orders": {
|
251
|
+
"orders": {
|
252
|
+
"type": "array",
|
253
|
+
"description": "List of order parameters",
|
254
|
+
"items": {"type": "object"}
|
255
|
+
},
|
252
256
|
"quantity_precision": {"type": "integer", "description": "Quantity precision for validation"},
|
253
257
|
"price_precision": {"type": "integer", "description": "Price precision for validation"}
|
254
258
|
},
|
@@ -274,7 +278,11 @@ class BinanceMCPServer:
|
|
274
278
|
"type": "object",
|
275
279
|
"properties": {
|
276
280
|
"symbol": {"type": "string", "description": "Trading pair symbol"},
|
277
|
-
"order_id_list": {
|
281
|
+
"order_id_list": {
|
282
|
+
"type": "array",
|
283
|
+
"description": "List of order IDs to cancel (up to 10 orders per batch)",
|
284
|
+
"items": {"type": "integer"}
|
285
|
+
}
|
278
286
|
},
|
279
287
|
"required": ["symbol", "order_id_list"]
|
280
288
|
}
|
@@ -750,8 +758,10 @@ async def main():
|
|
750
758
|
write_stream,
|
751
759
|
InitializationOptions(
|
752
760
|
server_name="binance-futures-mcp-server",
|
753
|
-
server_version="1.0.
|
754
|
-
capabilities={
|
761
|
+
server_version="1.0.1",
|
762
|
+
capabilities={
|
763
|
+
"tools": {}
|
764
|
+
}
|
755
765
|
)
|
756
766
|
)
|
757
767
|
|
@@ -1,9 +0,0 @@
|
|
1
|
-
binance_mcp/__init__.py,sha256=ExUxc1kp3GoSwmEtC7eGgFMZlvSQ4IdW1T5xhw-NT98,106
|
2
|
-
binance_mcp/__main__.py,sha256=_9DBrtv0PAvjLjCqKk_cMfGtkqSUOcmU6HeQKFjuFMQ,214
|
3
|
-
binance_mcp/server.py,sha256=LW16OetihWrkBLC1X-0Wg6k_Oug6PQ3LRVPkpEa32s0,38221
|
4
|
-
binance_futures_mcp-1.0.1.dist-info/LICENSE,sha256=zqfwopvOi7kOx5YVOnehgmRFR-IU3x1n9JEShr3QOYg,1075
|
5
|
-
binance_futures_mcp-1.0.1.dist-info/METADATA,sha256=8gD-KCDJh7Lf8VczmwS9bazhkVq4HsO19uAPdGoOC9A,10795
|
6
|
-
binance_futures_mcp-1.0.1.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
7
|
-
binance_futures_mcp-1.0.1.dist-info/entry_points.txt,sha256=-1iVs9AF7JQBS-xMichP9hQhbCY7YfLFRJVaNKwuN34,69
|
8
|
-
binance_futures_mcp-1.0.1.dist-info/top_level.txt,sha256=RqGhe1caZUvBF_ezvTiLZD8kVS25eiWVkfJfmoND9m8,12
|
9
|
-
binance_futures_mcp-1.0.1.dist-info/RECORD,,
|
{binance_futures_mcp-1.0.1.dist-info → binance_futures_mcp-1.0.3.dist-info}/entry_points.txt
RENAMED
File without changes
|
{binance_futures_mcp-1.0.1.dist-info → binance_futures_mcp-1.0.3.dist-info/licenses}/LICENSE
RENAMED
File without changes
|
File without changes
|