tradingview-mcp vs aws-finops-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
tradingview-mcp by atilaahmettaner | aws-finops-mcp-server by ravikiranvm | |
|---|---|---|
| Stars | ★ 2,698 | ★ 176 |
| 30d uses | — | — |
| Score | 57 | 45 |
| Official | — | — |
| Categories | FinanceAI / LLM ToolsProductivity | FinanceCloud StorageMonitoring |
| Language | Python | Python |
| Last commit | this month | 11 mo ago |
tradingview-mcp · Summary
AI trading MCP server with real-time stock/crypto screening, technical analysis, and native Claude integration.
aws-finops-mcp-server · Summary
AWS FinOps MCP server for analyzing cloud costs and detecting waste through natural language queries.
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
aws-finops-mcp-server · Use cases
- An AWS cost and usage analysis across multiple time ranges and profiles
- Running FinOps audits to identify unused or underutilized resources
- Comparing costs between different environments or projects
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.
aws-finops-mcp-server · Install
Installation Options
**Option 1: Using pipx (Recommended)**
pipx install aws-finops-mcp-server**Option 2: Using uv**
uv venv && source .venv/bin/activate
uv pip install aws-finops-mcp-server**Option 3: From Source**
git clone https://github.com/ravikiranvm/aws-finops-mcp-server.git
cd aws-finops-mcp-server
python -m venv .venv && source .venv/bin/activate
pip install -e .Claude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"aws_finops": {
"command": "aws-finops-mcp-server",
"args": []
}
}
}