This MCP server provides tools to fetch TradingView chart images based on ticker and interval with advanced browser pooling for maximum concurrent
This MCP server provides tools to fetch TradingView chart images based on ticker and interval with advanced browser pooling for maximum concurrent performance. Exposed over MCP by the tradingview chart mcp mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.
@smithery/cli on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.
Everything the assistant can do here goes through one of these:
get_tradingview_chart_image — The get_tradingview_chart_image tool exposed by this serverget_performance_stats — The get_performance_stats tool exposed by this serverCursor — 1. Go to: Settings -> Cursor Settings -> MCP -> Edit User MCP Config (~/.cursor/mcp.json). 2. Add or merge the following within the mcpServersYou will need 4 environment variables: TRADINGVIEW_SESSION_ID, TRADINGVIEW_SESSION_ID_SIGN, MCP_SCRAPER_HEADLESS, MCP_SCRAPER_CHART_PAGE_ID. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
Plenty of browser automation servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Tradingview Chart MCP's toolset — get_tradingview_chart_image, get_performance_stats, Cursor — is a fair guide to whether it matches your workflow. It is maintained by ertugrul59; worth a glance at recent repository activity before you build anything load-bearing on it.
SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.
| Tool | What it does |
|---|---|
| get_tradingview_chart_image | The get_tradingview_chart_image tool exposed by this server. |
| get_performance_stats | The get_performance_stats tool exposed by this server. |
| Cursor | 1. Go to: Settings -> Cursor Settings -> MCP -> Edit User MCP Config (~/.cursor/mcp.json). 2. Add or merge the following within the mcpServers object. Provide your credentials in the env block: |
{
"mcpServers": {
"tradingview-chart-mcp": {
"command": "/absolute/path/to/your/tradingview-chart-mcp/.venv/bin/python3",
"args": ["/absolute/path/to/your/tradingview-chart-mcp/main.py"],
"env": {
"TRADINGVIEW_SESSION_ID": "YOUR_SESSION_ID_HERE",
"TRADINGVIEW_SESSION_ID_SIGN": "YOUR_SESSION_ID_SIGN_HERE"
// Optional: Add MCP_SCRAPER_* variables here too if needed
// "MCP_SCRAPER_HEADLESS": "False"
}
}
// ... other servers if any ...
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| TRADINGVIEW_SESSION_ID | Configuration value read at startup. | Optional |
| TRADINGVIEW_SESSION_ID_SIGN | Configuration value read at startup. | Optional |
| MCP_SCRAPER_HEADLESS | Configuration value read at startup. | Optional |
| MCP_SCRAPER_CHART_PAGE_ID | Configuration value read at startup. | Optional |
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
Industrial-strength web extraction — render, scrape, crawl and search entire sites into clean markdown.
The original Chromium automation reference server — simple, screenshot-driven browser control.
Give your coding agent the full DevTools toolbox: traces, network, console, heap snapshots and Lighthouse.
Puppeteer-powered browser control that drives pages from the accessibility tree instead of pixels.
Cloud browsers for AI agents — automation sessions that run in Browserbase's fleet, not on your machine.