mcp-server-chart vs ccxt-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | ccxt-mcp by lazy-dinosaur | |
|---|---|---|
| Stars | ★ 4,068 | ★ 85 |
| 30d uses | 10,239 | — |
| Score | 84 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | FinanceAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
ccxt-mcp · Summary
CCXT MCP Server enables AI models to interact with 100+ cryptocurrency exchanges through MCP protocol.
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
ccxt-mcp · Use cases
- Automated cryptocurrency trading through AI assistants
- Portfolio performance analysis across multiple exchanges
- Risk management with technical indicators and volatility-based stops
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"]
}
}
}ccxt-mcp · Install
Installation
Global Installation
npm install -g @lazydino/ccxt-mcpRunning with npx
npx @lazydino/ccxt-mcpClaude Desktop Configuration
{
"mcpServers": {
"ccxt-mcp": {
"command": "npx",
"args": ["-y", "@lazydino/ccxt-mcp"],
"mcpBearerToken": "YOUR_MCP_TOKEN",
"accounts": [
{
"name": "bybit_main",
"exchangeId": "bybit",
"apiKey": "YOUR_API_KEY",
"secret": "YOUR_SECRET_KEY",
"defaultType": "spot"
}
]
}
}
}