MCP Catalogs
Home

everything vs okx-agent-trade-kit

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

everything
by modelcontextprotocol
okx-agent-trade-kit
by PlaceNL2026
Stars★ 85,748★ 86
30d uses
Score7748
Official
Categories
Developer ToolsAI / LLM ToolsOther
FinanceAI / LLM ToolsDeveloper Tools
LanguageTypeScriptTypeScript
Last committhis monththis month

everything · Summary

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

okx-agent-trade-kit · Summary

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

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

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

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

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.