High-performance CCXT MCP server for cryptocurrency exchange integration
MCPpedia last refreshed this data
MCP Server Ccxt is an MCP server that high-performance CCXT MCP server for cryptocurrency exchange integration. Its tool list has not been published yet over stdio, sse and http, requires no API key, and scores 78/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"ccxt": {
"command": "mcp-server-ccxt"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
High-performance cryptocurrency exchange integration using MCP (Model Context Protocol) and CCXT.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@doggybee/mcp-server-ccxt' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @doggybee/mcp-server-ccxt against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance
OKX trading MCP server — connect AI agents to spot, swap, futures, options & grid bots via the Model Context Protocol.
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
Deploy and manage blockchain nodes across 70+ protocols, search docs, request testnet funds.
HoneyBook client-portal MCP server for Claude — view contracts and invoices from wedding vendors
MCP Security Weekly
Get CVE alerts and security updates for Mcp Server Ccxt and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
High-performance cryptocurrency exchange integration using MCP (Model Context Protocol) and CCXT.
The CCXT MCP Server connects language models to cryptocurrency exchanges through the Model Context Protocol. It serves as a bridge that allows LLMs to access real-time market data and execute trading operations across multiple exchanges through a unified API.
The architecture includes:
The server is organized into three main modules for better maintainability and extensibility:
To install mcp-server-ccxt for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @doggybee/mcp-server-ccxt --client claude
You can install CCXT MCP Server from npm:
# Install globally
npm install -g @mcpfun/mcp-server-ccxt
# Start the server
mcp-server-ccxt
Or run directly:
npx @mcpfun/mcp-server-ccxt
Alternatively, you can clone and build the repository:
# Clone the repository
git clone https://github.com/doggybee/mcp-server-ccxt.git
cd mcp-server-ccxt
# Install dependencies
npm install
# Build the server
npm run build
# Start the server
npm start
Create an environment file
cp .env.example .env
Edit the .env file to add your exchange API keys
# Default exchange (optional)
DEFAULT_EXCHANGE=binance
# Default market type (optional)
DEFAULT_MARKET_TYPE=spot
# API credentials (optional)
BINANCE_API_KEY=your_api_key
BINANCE_SECRET=your_api_secret
# For exchanges requiring passphrase (e.g., KuCoin)
KUCOIN_API_KEY=your_kucoin_api_key
KUCOIN_SECRET=your_kucoin_secret
KUCOIN_PASSPHRASE=your_kucoin_passphrase
# Proxy configuration (optional)
USE_PROXY=false
PROXY_URL=http://username:password@your-proxy-server:port
# Legacy format (still supported but recommended to use the integrated URL format above)
# PROXY_USERNAME=
# PROXY_PASSWORD=
Note: If you encounter any issues with MCP communication, please see the Troubleshooting Guide for solutions.
Start the server:
# If installed globally via npm
mcp-server-ccxt
#
... [View full README on GitHub](https://github.com/doggybee/mcp-server-ccxt#readme)