MCP Catalogs
Home

ccxt-mcp vs everything

Side-by-side comparison to help you pick between these two MCP servers.

ccxt-mcp
by lazy-dinosaur
everything
by modelcontextprotocol
Stars★ 85★ 85,748
30d uses
Score4777
Official
Categories
FinanceAI / LLM ToolsDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit1 mo agothis month

ccxt-mcp · Summary

CCXT MCP Server enables AI models to interact with 100+ cryptocurrency exchanges through MCP protocol.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

ccxt-mcp · Use cases

  • Automated cryptocurrency trading through AI assistants
  • Portfolio performance analysis across multiple exchanges
  • Risk management with technical indicators and volatility-based stops

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

ccxt-mcp · Install

Installation

Global Installation

npm install -g @lazydino/ccxt-mcp

Running with npx

npx @lazydino/ccxt-mcp

Claude Desktop Configuration

{
  "mcpServers": {
    "ccxt-mcp": {
      "command": "npx",
      "args": ["-y", "@lazydino/ccxt-mcp"],
      "mcpBearerToken": "YOUR_MCP_TOKEN",
      "accounts": [
        {
          "name": "bybit_main",
          "exchangeId": "bybit",
          "apiKey": "YOUR_API_KEY",
          "secret": "YOUR_SECRET_KEY",
          "defaultType": "spot"
        }
      ]
    }
  }
}

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.