MCP Catalogs
Home

filesystem vs okx-agent-trade-kit

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

filesystem
by modelcontextprotocol
okx-agent-trade-kit
by PlaceNL2026
Stars★ 85,748★ 86
30d uses
Score7748
Official
Categories
File SystemDeveloper ToolsProductivity
FinanceAI / LLM ToolsDeveloper Tools
LanguageTypeScriptTypeScript
Last committhis monththis month

filesystem · Summary

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

okx-agent-trade-kit · Summary

OKX trading MCP server with 145 tools across 11 modules for crypto spot/futures/swap trading and account management.

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

okx-agent-trade-kit · Use cases

  • Automated cryptocurrency trading through AI agents like Claude or Cursor
  • Terminal-based trading operations using the CLI interface
  • Market analysis with technical indicators and smart money signals

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.

okx-agent-trade-kit · Install

# 1. Install
npm install -g @okx_ai/okx-trade-mcp @okx_ai/okx-trade-cli

# 2. Configure OKX API credentials (interactive wizard)
okx config init

# 3. Register the MCP server with your AI client
okx-trade-mcp setup --client claude-desktop

For Claude Desktop, add to Claude's config.json:

{
  "mcpServers": {
    "okx": {
      "command": "okx-trade-mcp",
      "args": []
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.