tradingview-chart-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
tradingview-chart-mcp by ertugrul59 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 93 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | Web ScrapingFinanceAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this month |
tradingview-chart-mcp · Summary
MCP server that captures TradingView chart images via Selenium with browser pooling for concurrent performance.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
tradingview-chart-mcp · Install
Installation
- Clone the repository:
git clone https://github.com/ertugrul59/tradingview-chart-mcp
cd tradingview-chart-mcp- Create and activate virtual environment:
python3 -m venv .venv
source .venv/bin/activate # macOS/Linux
.venv\Scripts\activate # Windows- Install dependencies:
pip install -r requirements.txt- Configure environment variables:
- Copy
.env.exampleto.env - Add your TradingView credentials (
TRADINGVIEW_SESSION_IDandTRADINGVIEW_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"
}
}
}
}- Run the server:
python main_optimized.py # Production with browser pooling
# or
python main.py # Legacy versioneverything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything