mcp-registry/mcp-server-ccxt

    ==================
      
       /// MCP ///
      /// MCP ///
        
    ==================
        
    [server:online]
    [protocol:ready]

mcp-server-ccxt

by doggybee

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

92
14
Specialized

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

Documentation

License: MIT License
Updated 7/30/2025
mcp-server-ccxt - MCP Server Registry - Augment Code