Catalog
io.github.lucyfox199818-collab/ccxt-mcp
Officialby lucyfox199818-collab · TypeScript
Codex CCXT MCP
Dry-run-first CCXT MCP with market, account, derivatives, and guarded trading tools.
CCXT integration with dry-run-first approach for market, account, and derivatives trading.
README not available yet.
Install
Configuration
Environment variables
BINANCE_API_KEYsecretOptional Binance API key for private account data and explicitly enabled trading.
BINANCE_API_SECRETsecretOptional Binance API secret.
CCXT_EXCHANGE_IDdefault binanceCCXT exchange identifier.
CCXT_DEFAULT_TYPEdefault futureDefault CCXT market type.
CCXT_SANDBOXdefault falseUse the exchange sandbox when supported.
CCXT_ENABLE_TRADINGdefault falseExplicit live-trading permission gate. Keep false for read-only and dry-run use.
CCXT_DRY_RUNdefault trueReturn simulated results for mutating tools instead of sending exchange actions.
claude_desktop_config.json
{
"mcpServers": {
"ccxt-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/lucyfox199818-collab/ccxt-mcp:0.1.0"
],
"env": {
"BINANCE_API_KEY": "<YOUR_BINANCE_API_KEY>",
"BINANCE_API_SECRET": "<YOUR_BINANCE_API_SECRET>",
"CCXT_EXCHANGE_ID": "binance",
"CCXT_DEFAULT_TYPE": "future",
"CCXT_SANDBOX": "false",
"CCXT_ENABLE_TRADING": "false",
"CCXT_DRY_RUN": "true"
}
}
}
}