gate-mcp 0.1.2 → 0.1.4
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 +4 -2
- package/package.json +10 -4
package/README.md
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
# gate-mcp
|
|
1
|
+
# gate-local-mcp
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
A local (stdio) MCP server that exposes the full [Gate.com](https://www.gate.com) API v4 to any MCP-compatible client (Claude Desktop, etc.).
|
|
4
4
|
|
|
5
5
|
**Quickstart guides:** [English](quickstart.md) · [中文](quickstart_zh.md)
|
|
6
6
|
|
|
7
|
+
> **Looking for the remote MCP server?** If you need HTTP/SSE-based remote access instead of local stdio, see [gate/gate-mcp](https://github.com/gate/gate-mcp).
|
|
8
|
+
|
|
7
9
|
## Features
|
|
8
10
|
|
|
9
11
|
- **86 tools** covering Spot, Futures, Delivery, Margin, Wallet, Account, Options, Earn, and Flash Swap APIs
|
package/package.json
CHANGED
|
@@ -1,14 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gate-mcp",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "MCP server exposing Gate.com API v4 to any MCP-compatible client",
|
|
3
|
+
"version": "0.1.4",
|
|
4
|
+
"description": "Local (stdio) MCP server exposing Gate.com API v4 to any MCP-compatible client",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|
|
8
8
|
"gate-mcp": "dist/index.js"
|
|
9
9
|
},
|
|
10
|
-
"files": [
|
|
11
|
-
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"README.md",
|
|
13
|
+
"LICENSE"
|
|
14
|
+
],
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=18"
|
|
17
|
+
},
|
|
12
18
|
"scripts": {
|
|
13
19
|
"build": "tsc",
|
|
14
20
|
"test": "vitest run",
|