tradingview-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
tradingview-mcp by atilaahmettaner | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 2,698 | ★ 85,748 |
| 30d uses | — | — |
| Score | 57 | 77 |
| Official | — | ✓ |
| Categories | FinanceAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | this month | this month |
tradingview-mcp · Summary
AI trading MCP server with real-time stock/crypto screening, technical analysis, and native Claude integration.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
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-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.
everything · 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