An r/ClaudeCode post added TradingView via an MCP server so Claude could read live charts. The full trading-agent stack pairs that with Scavio MCP for news + Reddit sentiment + filings.
Prerequisites
- Claude Code CLI
- TradingView account
- Scavio API key
- (Optional) Polygon for tick prices
Walkthrough
Step 1: Attach Scavio MCP for news + Reddit + filings SERP
One config line.
claude mcp add scavio https://mcp.scavio.dev/mcp --header 'x-api-key: $SCAVIO_API_KEY'Step 2: Attach TradingView MCP (community)
Run a community TradingView MCP server (e.g., from GitHub).
# Example (verify against the specific repo):
claude mcp add tradingview <github-mcp-server-url>Step 3: Ask Claude for cross-source context per ticker
Inside Claude Code: stack the MCPs.
// 'For NVDA: pull the last 7 days of headlines via scavio search. Pull top 5 r/wallstreetbets threads via scavio reddit_search. Read the daily chart via tradingview. Summarize the bull and bear case.'Step 4: Add filings via dorked search
site:sec.gov filings as a Scavio dork.
// 'scavio search: site:sec.gov NVDA 10-Q 2026 — extract the top result and pull risk factors.'Step 5: Optional: paper-trade via Alpaca MCP
Add Alpaca MCP for execution if your agent should also act.
claude mcp add alpaca <alpaca-mcp-url>
// Then: 'place a paper trade BUY 10 NVDA market'Python Example
# Most of this is Claude Code interactions; per-ticker context cost is ~$0.05-0.20 search + LLM tokens.JavaScript Example
// Same — MCP setup is via CLI, agent loop is in Claude.Expected Output
Claude Code with 2-3 MCP servers attached, each with semantically-named tools. Bull/bear case generated per ticker from news + sentiment + chart context. Honest constraint: this is research help, not trading advice; do your own DD.