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-ccxt2. Install dependencies
npm install # or yarn install3. 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 tsc5. 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-ccxtLicense: MIT License
Updated 7/30/2025