What it takes off you is the chart-by-chart pass. One call ranks a market by the pattern you care about, the next reads the symbol that came out on top across five timeframes, and a third asks whether that strategy would have made money on history with commission and slippage counted in.
A technical-analysis server over TradingView screener data, with Yahoo Finance quotes, Reddit sentiment and news headlines alongside it. Thirty-seven tools come in three shapes: scan a market, read one symbol, or test a strategy on past data.
- Full technical analysis on a symbol — RSI, MACD, Bollinger and 23 indicators with a buy, sell or hold read — in bulk across several symbols, with a proprietary Bollinger rating and a three-layer decision engine that adds a trade setup and a quality score (`get_technical_analysis`, `get_multiple_analysis`, `get_bollinger_band_analysis`, `get_stock_decision`)
- Multi-exchange screening with 20-plus filter criteria, scans by signal type such as oversold, trending or breakout, a 15-pattern candlestick detector, and weekly-to-15-minute trend alignment (`screen_stocks`, `scan_by_signal`, `get_candlestick_patterns`, `get_multi_timeframe_analysis`)
- Nine strategies backtested on history with commission and slippage counted in, reported with win rate, Sharpe, Calmar, max drawdown, profit factor, expectancy and a comparison against buy-and-hold; all nine ranked against each other; and a walk-forward split that returns an overfitting verdict of robust, moderate, weak or overfitted (`backtest_strategy`, `compare_strategies`, `walk_forward_backtest_strategy`)
- Yahoo Finance quotes for stocks, crypto, ETFs, indices and FX — price, change, 52-week range and market state — plus a global snapshot covering S&P500, NASDAQ, VIX, BTC, ETH, EUR/USD, SPY and GLD (`yahoo_price`, `market_snapshot`)
- A country-level screener for common or preferred shares across TradingView's markets, ranked by market cap with price, currency, change and dividend yield, and a direct price lookup for a list of `EXCHANGE:SYMBOL` tickers that names the ones it could not resolve (`stock_screener`, `stock_prices`)
- Reddit sentiment across finance communities, live headlines from Yahoo Finance, MarketWatch, CNBC, CoinDesk and CoinTelegraph, and one call that folds technicals, sentiment and news into a single confluence read (`market_sentiment`, `financial_news`, `combined_analysis`)
- The Egyptian Exchange covered in its own right: market overview, a ranking screener, Fibonacci retracement levels and a per-stock trade plan (`egx_market_overview`, `egx_stock_screener`, `egx_fibonacci_retracement`, `egx_trade_plan`)
`pip install tradingview-mcp-server` and Python, or connect to the remote endpoint at `https://mcp.cryptosieve.com/mcp`. Every call goes out to TradingView, Yahoo Finance or a news source at the moment you make it, so it needs network access. News and sentiment want a free Marketaux key; without one the rest still works. Symbols follow each source's own convention — `NASDAQ:NVDA` or `BTCUSDT` on the screener calls, `BTC-USD`, `^GSPC` or `EURUSD=X` on the Yahoo ones. Three of the nine strategies apply an SMA200 trend filter and need `period='1y'` or `'2y'` so the filter has enough history to warm up.
One command — pip install tradingview-mcp-server
