filesystem vs agent-trade-kit
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | agent-trade-kit by okx | |
|---|---|---|
| Stars | ★ 85,748 | ★ 297 |
| 30d uses | — | — |
| Score | 77 | 52 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | FinanceAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
agent-trade-kit · Summary
OKX trading MCP server with 150+ tools for spot, swap, futures, options, bots and portfolio 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
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
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.
agent-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": []
}
}
}