filesystem vs ai-trader
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | ai-trader by whchien | |
|---|---|---|
| Stars | ★ 85,748 | ★ 694 |
| 30d uses | — | — |
| Score | 77 | 52 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | FinanceAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 2 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
ai-trader · Summary
AI trader MCP server allows LLMs to run backtests, fetch market data, and analyze trading strategies across stocks, crypto, and forex.
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
ai-trader · Use cases
- AI assistants can run backtests with natural language commands like 'Run a backtest of CrossSMAStrategy on TSM data from 2020-2022'
- Traders can fetch market data through AI assistants for multiple markets with commands like 'Fetch Apple stock data from 2021 to 2024'
- Developers can list and analyze available trading strategies via the MCP server integration
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.
ai-trader · Install
Installation
**Option A: Install from PyPI**
pip install ai-trader**Option B: Install from Source**
git clone https://github.com/whchien/ai-trader.git
cd ai-trader
uv syncMCP Server Configuration
**Start the Server (for testing):**
python -m ai_trader.mcp**Configure with Claude Desktop:** Add the ai-trader MCP server to your Claude Desktop configuration file:
{
"mcpServers": {
"ai-trader": {
"command": "python3",
"args": ["-m", "ai_trader.mcp"],
"cwd": "/path/to/ai-trader"
}
}
}