zoomex-mcp-server
v0.1.5
Published
stdio MCP bridge for Zoomex: injects ZOOMEX_* env into tools/call and proxies to Spring Boot Streamable HTTP backend
Maintainers
Readme
zoomex-mcp-server
An MCP (Model Context Protocol) stdio bridge for Zoomex. Enables AI tools that support MCP — such as Cursor, Claude Desktop, and other MCP-compatible clients — to interact with the Zoomex trading platform using natural language, with credentials injected automatically via environment variables.
Quick Start
Configure your MCP-compatible AI tool to launch this server via npx:
{
"mcpServers": {
"zoomex": {
"command": "npx",
"args": ["-y", "zoomex-mcp-server", "--modules", "all"],
"env": {
"ZOOMEX_API_KEY": "<your-api-key>",
"ZOOMEX_SECRET_KEY": "<your-api-secret>",
"ZOOMEX_PASSPHRASE": "<your-passphrase>"
}
}
}
}Environment Variables
| Variable | Description |
|---|---|
| ZOOMEX_API_KEY | Your Zoomex API Key |
| ZOOMEX_SECRET_KEY | Your Zoomex API Secret |
| ZOOMEX_PASSPHRASE | Your Zoomex API Passphrase |
| ZOOMEX_MCP_URL | (Optional) Override the MCP backend URL |
CLI Options
| Option | Description |
|---|---|
| --modules <value> | Tool modules to load (default: all) |
| --url <url> | Override the MCP backend URL |
Requirements
- Node.js >= 18
- A valid Zoomex API Key with appropriate permissions
