gate/gate-local-mcp
A local MCP server that exposes the Gate API v4 to any MCP-compatible client
Platform-specific configuration:
{
"mcpServers": {
"gate-local-mcp": {
"command": "npx",
"args": [
"-y",
"gate-local-mcp"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
A local (stdio) MCP server that exposes the full Gate API v4 to any MCP-compatible client (Claude Desktop, etc.).
Quickstart guides: English · 中文
> Looking for the remote MCP server? If you need HTTP/SSE-based remote access instead of local stdio, see gate/gate-mcp.
GATE_API_KEY + GATE_API_SECRET env vars are setGATE_BASE_URL to use the testnet endpointGATE_MODULES or --modules; use GATE_READONLY or --readonly to restrict to read-only tools{
"mcpServers": {
"gate": {
"command": "npx",
"args": ["-y", "gate-mcp"]
}
}
}{
"mcpServers": {
"gate": {
"command": "npx",
"args": ["-y", "gate-mcp"],
"env": {
"GATE_API_KEY": "your-api-key",
"GATE_API_SECRET": "your-api-secret"
}
}
}
}{
"mcpServers": {
"gate": {
"command": "npx",
"args": ["-y", "gate-mcp"],
"env": {
"GATE_BASE_URL": "https://api-testnet.gateapi.io",
"GATE_API_KEY": "your-testnet-key",
"GATE_API_SECRET": "your-testnet-secret"
}
}
}
}By default all 384 tools (22 modules) are registered
Loading reviews...