Install
mcp-registry/mcp-server-ccxt
mcp-server-ccxt logo

mcp-server-ccxt

Author: doggybee

Description: High-performance CCXT MCP server for cryptocurrency exchange integration (bridges LLMs to 20+ exchanges via Model Context Protocol).

Stars: 92

Forks: 14

License: MIT License

Category: Specialized

Overview

Installation

Prerequisites:
• Node.js ≥ 16
• Git
1. Clone the repository
git clone https://github.com/doggybee/mcp-server-ccxt.git cd mcp-server-ccxt
2. Install dependencies
npm install # or yarn install
3. Provide exchange credentials (if you plan to trade)
# The project usually expects environment variables. Create a .env file: EXCHANGE=binance # any CCXT-supported exchange API_KEY=yourKey API_SECRET=yourSecret # add any other variables required by the exchange or MCP framework.
4. Build the TypeScript source (skip if repository ships compiled JS)
npm run build # invokes tsc
5. Start the MCP server
npm start # or: node dist/index.js / ts-node src/index.ts Docker (optional): docker build -t mcp-server-ccxt . docker run -d --env-file .env -p 3000:3000 mcp-server-ccxt

License: MIT License
Updated 7/30/2025