MCP Catalogs
Home

mcp-server-chart vs tradingview-chart-mcp

Side-by-side comparison to help you pick between these two MCP servers.

mcp-server-chart
by antvis
tradingview-chart-mcp
by ertugrul59
Stars★ 4,068★ 93
30d uses10,239
Score8447
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Web ScrapingFinanceAI / LLM Tools
LanguageTypeScriptPython
Last committhis month2 mo ago

mcp-server-chart · Summary

A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.

tradingview-chart-mcp · Summary

MCP server that captures TradingView chart images via Selenium with browser pooling for concurrent performance.

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-chart-mcp · Use cases

  • Financial analysis platforms that need to display real-time TradingView charts
  • AI assistants providing market insights with visual chart data
  • Automated trading systems requiring chart image capture

mcp-server-chart · Install

Installation

Install globally:

npm install -g @antv/mcp-server-chart

For 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-chart-mcp · Install

Installation

  1. Clone the repository:
git clone https://github.com/ertugrul59/tradingview-chart-mcp
cd tradingview-chart-mcp
  1. Create and activate virtual environment:
python3 -m venv .venv
source .venv/bin/activate  # macOS/Linux
.venv\Scripts\activate  # Windows
  1. Install dependencies:
pip install -r requirements.txt
  1. Configure environment variables:
  • Copy .env.example to .env
  • Add your TradingView credentials (TRADINGVIEW_SESSION_ID and TRADINGVIEW_SESSION_ID_SIGN)

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "tradingview-chart-mcp": {
      "command": "/path/to/tradingview-chart-mcp/.venv/bin/python3",
      "args": ["/path/to/tradingview-chart-mcp/main.py"],
      "env": {
        "TRADINGVIEW_SESSION_ID": "YOUR_SESSION_ID_HERE",
        "TRADINGVIEW_SESSION_ID_SIGN": "YOUR_SESSION_ID_SIGN_HERE"
      }
    }
  }
}
  1. Run the server:
python main_optimized.py  # Production with browser pooling
# or
python main.py  # Legacy version
Comparison generated from public README + GitHub signals. Last updated automatically.