MCP server that captures TradingView chart images via Selenium — supports any ticker/interval with browser pooling for concurrent performance
MCP Server - TradingView Chart Image Scraper
🚀 Now with Browser Pooling Optimization for 70-80% Better Concurrent Performance!
This MCP server provides tools to fetch TradingView chart images based on ticker and interval with advanced browser pooling for maximum concurrent performance.
🔥 Performance Optimizations
Browser Pooling Technology
- Production Version: Uses
main_optimized.pywith browser pooling for maximum concurrent performance - Performance Improvement: 70-80% faster for concurrent requests
- Concurrent Handling: Supports up to 4 simultaneous requests with pre-initialized browser instances
- Expected Performance:
Version Comparison
main_optimized.py(Production): Browser pooling, concurrent optimization, performance trackingmain.py(Legacy): Simple single-browser approach, kept for debugging/fallback
Features
- 🚀 Optimized Chart Image Tool: Fetches direct chart images with browser pooling for maximum concurrent performance
- 📊 Performance Statistics: Built-in performance monitoring and statistics
- 🔄 Browser Pool Management: Pre-initialized browser instances for zero-overhead concurrent requests
- 🎯 Natural Language Prompts: Easy chart requests with interval mapping
- ⚙️ Environment Configuration: Fully configurable via environment variables
- 🔐 TradingView Authentication: Secure session-based authentication
- 💾 Clipboard Capture: Direct base64 image capture for faster performance
Tools
gettradingviewchart_image
Description: Fetches the direct image URL for a TradingView chart snapshot with optimized concurrent performance.
Performance: This optimized version achieves 70-80% better performance for concurrent requests using browser pooling technology.
Arguments:
ticker(str): The TradingView ticker symbol (e.g., "BYBIT:BTCUSDT.P", "NASDAQ:AAPL"). Required.interval(str): The chart time interval (e.g., '1', '5', '15', '60', '240', 'D', 'W'). Required.
- (str): The direct TradingView snapshot image URL (e.g.,
data:image/png;base64,...orhttps://s3.tradingview.com/snapshots/...).
Error(MCP type): If the scraper encounters an error. Error codes:
400: Input error (invalid ticker/interval format)
- 503: Scraper error (failure during the scraping process)
- 500: Unexpected internal server error
getperformancestats
Description: Get performance statistics for the optimized TradingView MCP server.
Returns:
- Detailed metrics about request performance, improvement over baseline, and browser pool status
🚀 OPTIMIZED TRADINGVIEW MCP SERVER PERFORMANCE STATS
• Total Requests: 12
• Average Time: 3.30s
• Performance Improvement: 70.8%
• Browsers in Pool: 4
• Max Concurrent: 4
Prompts
Get the {interval} chart for {ticker}
Show me the daily TradingView chart for {ticker}
Fetch TradingView chart image for {ticker} on the {interval} timeframe
Setup
- Create Virtual Environment:
# Navigate to the project directory
cd tradingview-chart-mcp
# Create the venv (use python3 if python is not linked)
python3 -m venv .venv
- Activate Virtual Environment:
source .venv/bin/activate
- Windows (Git Bash/WSL):
source .venv/Scripts/activate
- Windows (Command Prompt):
.venv\\Scripts\\activate.bat
- Windows (PowerShell):
.venv\\Scripts\\Activate.ps1
(Note: You might need to adjust PowerShell execution policy: Set-ExecutionPolicy RemoteSigned -Scope CurrentUser)
Your terminal prompt should now indicate you are in the (.venv).
- Install Dependencies (inside venv):
pip install -r requirements.txt
- Configure Environment (for Local Testing):
.env.example to .env.
- Fill in your TRADINGVIEWSESSIONID and TRADINGVIEWSESSIONID_SIGN in the .env file. You can obtain these from your browser's cookies after logging into TradingView.
- This .env file is used when running the server directly (e.g., python main.py) for local testing.
- Adjust optional scraper settings (MCPSCRAPERHEADLESS, etc.) in .env if needed for local runs.
- Ensure ChromeDriver: Make sure
chromedriveris installed and accessible in your system's PATH, or configure thetview-scraper.pyaccordingly if it allows specifying a path.
Running the Server
Production (Optimized)
python main_optimized.py
Legacy (Simple)
python main.py
Command Line Options
# HTTP transport with custom port
python main_optimized.py --transport streamable-http --port 8003
Enable authentication (default for TradingView)
python main_optimized.py --auth
Adjust concurrency
python main_optimized.py --max-concurrent 6
Disable browser pooling (fallback to traditional)
python main_optimized.py --disable-pooling
🧪 Performance Testing
Agent-Style Testing
Test the server using the same approach as the production agent:
cd tests/
Sequential performance test
python testmcpagent_style.py --runs 5 --ticker BYBIT:BTCUSDT.P --interval 240
Concurrent performance test
python testmcpagent_style.py --concurrent 3 --ticker BYBIT:BTCUSDT.P --interval 240
Test different symbols and timeframes
python testmcpagent_style.py --concurrent 4 --ticker NASDAQ:AAPL --interval 15
python testmcpagent_style.py --concurrent 2 --ticker BYBIT:ETHUSDT.P --interval D
Expected Results
- Sequential: ~6-8s per request (baseline)
- Concurrent (3x): ~2.5-3.5s per request (70-80% improvement)
- Success Rate: 100% reliability under load
- Throughput: Up to 4 concurrent requests efficiently handled
🔧 Technical Details
Browser Pooling Architecture
- Pre-initialized Browsers: 4 browser instances ready for immediate use
- Thread-Safe Pool: Concurrent access with proper locking
- Async Semaphore: Optimal request limiting
- Performance Tracking: Real-time statistics and monitoring
- Graceful Cleanup: Proper browser lifecycle management
Save Shortcut Feature
The MCPSCRAPERUSESAVESHORTCUT feature allows you to capture chart images directly to the clipboard as base64 data URLs:
Benefits:
- Faster Performance: No HTTP requests needed
- More Reliable: No dependency on TradingView's CDN
- Offline Capability: Works once chart is loaded
- Direct Integration: Base64 data URLs for immediate use
# Enable clipboard image capture (DEFAULT)
MCPSCRAPERUSESAVESHORTCUT=True
Disable and use traditional screenshot links
MCPSCRAPERUSESAVESHORTCUT=False
Usage Examples
Available Tools:
gettradingviewchart_image(ticker: str, interval: str): Optimized chart fetching with browser pooling
- "Get the 15 minute chart for NASDAQ:AAPL"
- "Show me the daily chart for BYBIT:BTCUSDT.P"
- "Fetch TradingView chart image for COINBASE:ETHUSD on the 60 timeframe"
Deactivating the Virtual Environment
When finished:
deactivate
🔄 Fallback Options
If you encounter issues with the optimized version:
- Disable Browser Pooling:
python main_optimized.py --disable-pooling
- Use Legacy Version:
python main.py
- Debug Mode:
python main_optimized.py --log-level DEBUG
📊 Performance Monitoring
The optimized server includes built-in performance monitoring:
- Request success rates
- Average response times
- Performance improvement metrics
- Browser pool utilization
- Concurrent request handling statistics
getperformancestats tool or through the server logs.
🔌 Using with MCP Clients (Claude Desktop / Cursor)
This server supports two ways of providing configuration:
- Via
.envfile (for local testing): When runningpython main.pydirectly, the server will load credentials and settings from a.envfile in the project directory. - Via Client Environment Variables (Recommended for Integration): When run by an MCP client (like Claude/Cursor), you should configure the client to inject the required environment variables directly. These will override any values found in a
.envfile.
Claude Desktop
- Open your Claude Desktop configuration file:
%APPDATA%\\Claude\\claudedesktopconfig.json
- macOS: ~/Library/Application\ Support/Claude/claudedesktopconfig.json
- Add or merge the following within the
mcpServersobject. Provide your credentials in theenvblock:
{
"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": {
"TRADINGVIEWSESSIONID": "YOURSESSIONID_HERE",
"TRADINGVIEWSESSIONIDSIGN": "YOURSESSIONIDSIGN_HERE"
// Optional: Add MCPSCRAPER* variables here too if needed
// "MCPSCRAPERHEADLESS": "False"
}
}
// ... other servers if any ...
}
}
- Replace the placeholder paths (
command,args) with your actual absolute paths. - Replace
YOURSESSIONIDHEREandYOURSESSIONIDSIGN_HEREwith your actual TradingView credentials. - Restart Claude Desktop.
Cursor
- Go to:
Settings -> Cursor Settings -> MCP -> Edit User MCP Config (~/.cursor/mcp.json). - Add or merge the following within the
mcpServersobject. Provide your credentials in theenvblock:
{
"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": {
"TRADINGVIEWSESSIONID": "YOURSESSIONID_HERE",
"TRADINGVIEWSESSIONIDSIGN": "YOURSESSIONIDSIGN_HERE"
// Optional: Add MCPSCRAPER* variables here too if needed
// "MCPSCRAPERHEADLESS": "False"
}
}
// ... other servers if any ...
}
}
- Replace the placeholder paths (
command,args) with your actual absolute paths. - Replace
YOURSESSIONIDHEREandYOURSESSIONIDSIGN_HEREwith your actual TradingView credentials. - Restart Cursor.
Installing via Smithery
To install TradingView Chart Image Scraper for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @ertugrul59/tradingview-chart-mcp --client claude
Configuration
Environment Variables
The following environment variables can be set to configure the scraper:
TRADINGVIEWSESSIONID: Your TradingView session ID (required)TRADINGVIEWSESSIONID_SIGN: Your TradingView session ID signature (required)MCPSCRAPERHEADLESS: Run browser in headless mode (default:True)MCPSCRAPERWINDOW_WIDTH: Browser window width (default:1400)MCPSCRAPERWINDOW_HEIGHT: Browser window height (default:1400)MCPSCRAPERUSESAVESHORTCUT: Use clipboard image capture instead of screenshot links (default:True)MCPSCRAPERCHARTPAGEID: Custom chart page ID (optional)
Save Shortcut Feature
The MCPSCRAPERUSESAVESHORTCUT feature allows you to capture chart images directly to the clipboard as base64 data URLs instead of getting screenshot links. This eliminates the need to download images from URLs.
Benefits:
- Faster chart capture (no HTTP requests needed)
- More reliable (no dependency on TradingView's CDN)
- Works offline once the chart is loaded
- Direct base64 data URLs for immediate use
- When enabled (
True): UsesShift+Ctrl+S(orShift+Cmd+Son Mac) to capture chart image directly to clipboard - When disabled (
False): Uses traditionalAlt+Sto get screenshot links, then converts to image URLs
# Enable clipboard image capture (DEFAULT)
MCPSCRAPERUSESAVESHORTCUT=True
Disable and use traditional screenshot links
MCPSCRAPERUSESAVESHORTCUT=False