Loading...
npx -y @smithery/cli install @doggybee/mcp-server-ccxt --client claude{
"mcpServers": {
"ccxt": {
"command": "mcp-server-ccxt"
}
}
}list-exchangesLists all cryptocurrency exchanges supported by the CCXT library.
Read-only operation with no side effects.
get-tickerRetrieves the current ticker information for a specified trading pair.
Read-only operation; retrieves market data.
get-orderbookFetches the order book for a given trading pair on an exchange.
Read-only operation; retrieves market data.
account-balanceRetrieves the account balance from a specified cryptocurrency exchange.
Requires API keys, but only retrieves information.
place-market-orderPlaces a market order on a cryptocurrency exchange.
Executes trades with potential financial risk.
cancel-orderCancels an existing order on a cryptocurrency exchange.
Modifies existing orders, potentially impacting trading strategies.
set-proxy-configConfigures proxy settings for accessing exchanges.
Incorrect proxy settings can expose traffic or introduce vulnerabilities.
clear-cacheClears the CCXT cache, potentially impacting performance.
Can affect performance, but not destructive.
set-log-levelSets the logging level for the server.
Does not affect functionality, only logging verbosity.
The CCXT MCP Server is relatively safe for read-only operations using public APIs. However, using private APIs for trading carries significant financial risk and requires careful management of API keys and permissions. Always limit API key permissions and use secure storage practices.