mcp-server-chart vs tradingview-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | tradingview-mcp by atilaahmettaner | |
|---|---|---|
| Stars | ★ 4,068 | ★ 2,698 |
| 30d uses | 10,239 | — |
| Score | 84 | 57 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | FinanceAI / LLM ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
tradingview-mcp · Summary
AI trading MCP server with real-time stock/crypto screening, technical analysis, and native Claude integration.
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
tradingview-mcp · Use cases
- AI-assisted trading decisions using real-time technical analysis and sentiment data
- Backtesting multiple trading strategies with institutional performance metrics
- Accessing comprehensive market data through Claude without switching applications
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"]
}
}
}tradingview-mcp · Install
Install via pip:
pip install tradingview-mcp-serverClaude Desktop Config (claude_desktop_config.json):
{
"mcpServers": {
"tradingview": {
"command": "/Users/YOUR_USERNAME/.local/bin/uvx",
"args": ["--from", "tradingview-mcp-server", "tradingview-mcp"]
}
}
}On Linux, replace /Users/YOUR_USERNAME with /home/YOUR_USERNAME. On Windows, use %USERPROFILE%\.local\bin\uvx.exe.