MCP Catalogs
Home

ccxt-mcp vs filesystem

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

ccxt-mcp
by lazy-dinosaur
filesystem
by modelcontextprotocol
Stars★ 85★ 85,748
30d uses
Score4777
Official
Categories
FinanceAI / LLM ToolsDeveloper Tools
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last commit1 mo agothis month

ccxt-mcp · Summary

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

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

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"
        }
      ]
    }
  }
}

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.