Enables pulling recent ticker-specific financial news headlines from Google News RSS feeds.
Aggregates financial news from multiple RSS sources in real-time to provide agents with live market context.
Provides tools to screen the stock market for stocks based on presets such as most active, volume spikes, and technical conditions like overbought or oversold status.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@momentum-mcpAnalyze the technicals for NVDA and show me a candlestick chart"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
What Is This?
momentum-mcp turns any MCP-compatible AI assistant into a quantitative trading analyst. Instead of copy-pasting tickers into Yahoo Finance and screenshotting charts, your AI agent can:
π Screen the entire market in seconds β find overbought stocks, unusual volume spikes, new 52-week highs
π Pull clean OHLCV data for any ticker, any timeframe β ready for analysis, no CSV wrangling
π Compute technical indicators β RSI, MACD with plain-English interpretation, not just raw numbers
π―οΈ Generate professional candlestick charts β dark-themed, publication-ready PNGs with volume panels
π° Aggregate financial news from multiple RSS sources in real-time
π Extract full article text from any URL β your agent reads the actual article, not just the headline
All of this happens through the Model Context Protocol, so your AI assistant calls these tools natively β no API keys, no REST endpoints, no configuration hell.
Tools
Tool | What It Does |
| Scan for stocks by preset: most active, new highs/lows, overbought, oversold, high relative volume |
| Fetch OHLCV candlestick data β any ticker, any period, any interval |
| Compute RSI(14) + MACD(12,26,9) and get a plain-English analysis summary |
| Render a candlestick + volume chart β PNG file + base64 string |
| Pull recent headlines from Yahoo Finance & Google News RSS feeds |
| Extract the full article body from any URL (strips ads, nav, paywalls) |
Quickstart
git clone https://github.com/YOUR_USERNAME/momentum-mcp.git
cd momentum-mcp
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txtTest that everything works:
python -c "from mcp_server.server import mcp; print('β Ready')"Run the server:
python -m mcp_server.serverConnect Your Client
Claude Desktop
The most popular MCP client. Add to your claude_desktop_config.json (located at ~/Library/Application Support/Claude/ on macOS or %APPDATA%\Claude\ on Windows):
{
"mcpServers": {
"momentum": {
"command": "python",
"args": ["-m", "mcp_server.server"],
"cwd": "/absolute/path/to/momentum-mcp",
"env": {
"VIRTUAL_ENV": "/absolute/path/to/momentum-mcp/.venv",
"PATH": "/absolute/path/to/momentum-mcp/.venv/bin:$PATH"
}
}
}
}Restart Claude Desktop. You'll see the π¨ tools icon β click it to verify all 6 tools are loaded.
Cursor
Add to .cursor/mcp.json in your project root (or global config at ~/.cursor/mcp.json):
{
"mcpServers": {
"momentum": {
"command": "/absolute/path/to/momentum-mcp/.venv/bin/python",
"args": ["-m", "mcp_server.server"],
"cwd": "/absolute/path/to/momentum-mcp"
}
}
}The tools will be available in Cursor's Agent mode. Ask it to "screen for overbought stocks" or "chart NVDA over the last 6 months."
VS Code + GitHub Copilot
MCP is generally available in GitHub Copilot (VS Code 1.86+). Add to your .vscode/mcp.json:
{
"servers": {
"momentum": {
"command": "/absolute/path/to/momentum-mcp/.venv/bin/python",
"args": ["-m", "mcp_server.server"],
"cwd": "/absolute/path/to/momentum-mcp"
}
}
}Enable Agent mode in the Copilot Chat panel β momentum tools will appear in the tool picker.
Windsurf
Add to your Windsurf MCP config at ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"momentum": {
"command": "/absolute/path/to/momentum-mcp/.venv/bin/python",
"args": ["-m", "mcp_server.server"],
"cwd": "/absolute/path/to/momentum-mcp"
}
}
}Cascade will automatically discover the tools. Use them in any Windsurf chat.
Cline (VS Code Extension)
Open Cline's MCP settings (gear icon β MCP Servers β "Edit MCP Settings") and add:
{
"mcpServers": {
"momentum": {
"command": "/absolute/path/to/momentum-mcp/.venv/bin/python",
"args": ["-m", "mcp_server.server"],
"cwd": "/absolute/path/to/momentum-mcp"
}
}
}Cline will list the tools in its server panel. Enable them and they're ready to use.
Claude Code (CLI)
Add the server directly from the terminal:
claude mcp add momentum \
/absolute/path/to/momentum-mcp/.venv/bin/python \
-m mcp_server.server \
--cwd /absolute/path/to/momentum-mcpVerify it's connected:
claude mcp listAny Other MCP Client
momentum-mcp uses the stdio transport (the MCP default). Any client that supports stdio can connect by running:
/path/to/.venv/bin/python -m mcp_server.serverThat's it. No HTTP server, no ports, no auth β just stdin/stdout.
Project Structure
momentum-mcp/
βββ requirements.txt # Pinned dependencies
βββ README.md
βββ mcp_server/
βββ __init__.py
βββ server.py # FastMCP entry point β registers all tools
βββ screener.py # TradingView stock scanner (6 presets)
βββ data.py # yfinance OHLCV with async wrapper
βββ technicals.py # pandas-ta RSI(14) & MACD(12,26,9)
βββ charts.py # mplfinance candlestick + volume charts
βββ news.py # feedparser RSS + trafilatura extractionTech Stack
Library | Role |
MCP server framework (v3.x) | |
Stock screening via TradingView's API | |
Yahoo Finance OHLCV data | |
130+ technical indicators | |
Financial chart rendering | |
RSS/Atom feed parsing | |
Web article text extraction |
Example Prompts
Once connected, try asking your AI assistant:
"Screen the market for stocks with high relative volume today"
"Get me 6 months of daily data for NVDA and analyze the technicals"
"Generate a candlestick chart for AAPL over the past year"
"What's the latest news on TSLA? Pull the full text of the most interesting article."
"Find oversold stocks, then analyze the technicals on the top 3 results"
License
MIT β do whatever you want with it.
This server cannot be installed
Resources
Looking for Admin?
Admins can modify the Dockerfile, update the server description, and track usage metrics. If you are the server author, to access the admin panel.