binance-futures-mcp 1.0.2__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: binance-futures-mcp
3
- Version: 1.0.2
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
@@ -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": {"type": "array", "description": "List of order parameters"},
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": {"type": "array", "description": "List of order IDs to cancel (up to 10 orders per batch)"}
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
  }
@@ -1,9 +0,0 @@
1
- binance_futures_mcp-1.0.2.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=FZt8rs22u-37xeZg5Rg7uMVYsNDLZt99DG8EG5YN-k8,38270
5
- binance_futures_mcp-1.0.2.dist-info/METADATA,sha256=bUTTzWuLNtsHdDt4K2F3sFEhDt-rHU5zKF6y3UQ_ORc,11022
6
- binance_futures_mcp-1.0.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
7
- binance_futures_mcp-1.0.2.dist-info/entry_points.txt,sha256=-1iVs9AF7JQBS-xMichP9hQhbCY7YfLFRJVaNKwuN34,69
8
- binance_futures_mcp-1.0.2.dist-info/top_level.txt,sha256=RqGhe1caZUvBF_ezvTiLZD8kVS25eiWVkfJfmoND9m8,12
9
- binance_futures_mcp-1.0.2.dist-info/RECORD,,