mcp-server-chart vs ai-trader
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | ai-trader by whchien | |
|---|---|---|
| Stars | ★ 4,068 | ★ 694 |
| 30d uses | 10,239 | — |
| Score | 84 | 52 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | FinanceAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 2 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
ai-trader · Summary
AI trader MCP server allows LLMs to run backtests, fetch market data, and analyze trading strategies across stocks, crypto, and forex.
mcp-server-chart · Use cases
- Data analysts creating visual reports from datasets
- AI assistants generating custom charts based on user requests
- Web applications embedding visualization capabilities via HTTP API
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
mcp-server-chart · Install
Installation
Install globally:
npm install -g @antv/mcp-server-chartFor Desktop Apps (e.g., Claude Desktop, VSCode):
{
"mcpServers": {
"mcp-server-chart": {
"command": "npx",
"args": ["-y", "@antv/mcp-server-chart"]
}
}
}For Windows:
{
"mcpServers": {
"mcp-server-chart": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
}
}
}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"
}
}
}