everything vs agent-trade-kit
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | agent-trade-kit by okx | |
|---|---|---|
| Stars | ★ 85,748 | ★ 297 |
| 30d uses | — | — |
| Score | 77 | 52 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | FinanceAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
agent-trade-kit · Summary
OKX trading MCP server with 150+ tools for spot, swap, futures, options, bots and portfolio 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
agent-trade-kit · Use cases
- AI-powered trading assistant that can execute complex trading strategies autonomously
- Portfolio management agent that monitors positions and rebalances based on market conditions
- Research tool that combines market data, news sentiment, and smart money signals to generate trading insights
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-everythingagent-trade-kit · Install
# Install the MCP server and CLI
npm install -g @okx_ai/okx-trade-mcp @okx_ai/okx-trade-cli
# Configure OKX API credentials (interactive wizard)
okx config init
# Register with Claude Desktop
okx-trade-mcp setup --client claude-desktopAdd to Claude Desktop configuration:
{
"mcpServers": {
"okx-trade": {
"command": "okx-trade-mcp",
"args": []
}
}
}