Portfolio Research MCP Server
Enables AI assistants to perform live stock and portfolio research using Yahoo Finance data, including quotes, fundamentals, price history, news, portfolio analysis, and ticker comparisons.
README
<p align="center"> <img src="assets/banner.png" alt="Stock Research MCP Server" width="100%"> </p>
Portfolio Research MCP Server š
A Model Context Protocol (MCP) server that gives any AI coding assistant or chat client live stock and portfolio research tools, powered by Yahoo Finance data. Written in Python with FastMCP, it speaks Streamable HTTP so you can host it once and connect from Claude, Cursor, VS Code, Google Antigravity, Windsurf, and terminal-based agents.
Ask your assistant: "Analyze my portfolio: 10 AAPL bought at $150 and 5 MSFT at $300," and it will call this server, price the holdings live, and report your gain/loss and weights.
ā³ First request is slow ā please read
The public demo is hosted on Render's free tier, which puts the server to sleep after ~15 minutes of inactivity. When you send your first request after it has been idle, Render has to wake it up (a "cold start"), which takes roughly 30ā60 seconds.
- Your first message may hang or time out ā this is normal. Just wait and try again; once awake, the server responds instantly.
- Tip: open
https://stock-research-mcp.onrender.com/healthin your browser first. When it showsok, the server is warm and ready.- This delay only affects the free hosted demo. A local run or a paid Render instance has no cold start.
š Try it instantly (public demo)
A live instance is already hosted ā you don't need to deploy anything to test it.
| URL | https://stock-research-mcp.onrender.com/mcp |
| Auth header | Authorization: Bearer mYfUEnx-jnDKlUTHIkUXhCWhMBPgxuzmSvCfxegrt98 |
Drop those into any config block in Connect it to your IDE / agent below and start asking questions.
ā ļø This is a shared public demo token for trying the server out. It may be rate-limited, rotated, or taken down at any time, and the instance sleeps after ~15 min idle (first call may take 30ā60s to wake). For anything real, deploy your own and set your own private
MCP_AUTH_TOKEN.
Tools
| Tool | What it does |
|---|---|
get_quote |
Latest price, day change, volume, market cap for a ticker |
get_fundamentals |
P/E, EPS, dividend yield, beta, 52-week range, sector, analyst rating |
get_price_history |
Historical OHLC candles (period/interval) for trend analysis |
get_news |
Recent news headlines with links for a ticker |
analyze_portfolio |
Value a set of holdings; per-position + total gain/loss and weights |
compare_tickers |
Side-by-side valuation snapshot for several tickers |
Data source: yfinance ā free, no API key required.
Quick start (local)
Requires Python 3.10+.
git clone <your-repo-url> stock-research-mcp
cd stock-research-mcp
python -m venv .venv
# Windows:
.venv\Scripts\activate
# macOS/Linux:
source .venv/bin/activate
pip install -r requirements.txt
python server.py
The server starts at:
- MCP endpoint:
http://127.0.0.1:8000/mcp - Health check:
http://127.0.0.1:8000/healthāok
Locally, auth is disabled unless you set MCP_AUTH_TOKEN (see Security).
Deploy free on Render
Render's free web-service tier hosts this at a public HTTPS URL. A render.yaml blueprint is
included.
-
Push this repo to GitHub.
-
In the Render dashboard: New + ā Blueprint, select your repo. Render reads
render.yamland provisions a free web service. (Or New + ā Web Service manually: Buildpip install -r requirements.txt, Startpython server.py.) -
Under Environment, set a secret
MCP_AUTH_TOKEN(a long random string). -
Deploy. Your server is live at:
https://<your-app-name>.onrender.com/mcp
ā ļø Free-tier cold starts: free instances spin down after ~15 minutes idle. The next request wakes it and can take 30ā60 seconds. Upgrade to any paid instance to stay always-on. Hit
/healthto warm it before a demo.
Connect it to your IDE / agent
The blocks below use the public demo URL and token so you can copy-paste and go. To use
your own deployment, swap in your Render URL and your private MCP_AUTH_TOKEN (or
http://127.0.0.1:8000/mcp with no header for a local run).
ā ļø The config key differs by client. Cursor and VS Code use
url; Antigravity and Windsurf useserverUrl; Claude Code uses a CLI command. Copy the right block below.
Claude Code (terminal)
claude mcp add --transport http stock-research \
https://stock-research-mcp.onrender.com/mcp \
--header "Authorization: Bearer mYfUEnx-jnDKlUTHIkUXhCWhMBPgxuzmSvCfxegrt98"
Then check it: claude mcp list. Remove with claude mcp remove stock-research.
Claude Desktop
Claude Desktop connects to remote servers through the mcp-remote bridge (needs Node.js).
Edit claude_desktop_config.json (Settings ā Developer ā Edit Config):
{
"mcpServers": {
"stock-research": {
"command": "npx",
"args": [
"-y", "mcp-remote",
"https://stock-research-mcp.onrender.com/mcp",
"--header", "Authorization: Bearer mYfUEnx-jnDKlUTHIkUXhCWhMBPgxuzmSvCfxegrt98"
]
}
}
}
Restart Claude Desktop. Tools appear under the š (MCP) icon.
Cursor
Edit ~/.cursor/mcp.json (global) or .cursor/mcp.json (per-project):
{
"mcpServers": {
"stock-research": {
"url": "https://stock-research-mcp.onrender.com/mcp",
"headers": {
"Authorization": "Bearer mYfUEnx-jnDKlUTHIkUXhCWhMBPgxuzmSvCfxegrt98"
}
}
}
}
Then Settings ā MCP and confirm the server shows green.
Google Antigravity
Antigravity uses serverUrl (not url). Open the MCP store via the "ā¦" menu in the
agent panel ā Manage MCP Servers ā View raw config, or edit
~/.gemini/config/mcp_config.json directly:
{
"mcpServers": {
"stock-research": {
"serverUrl": "https://stock-research-mcp.onrender.com/mcp",
"headers": {
"Authorization": "Bearer mYfUEnx-jnDKlUTHIkUXhCWhMBPgxuzmSvCfxegrt98"
}
}
}
}
Save, then Customizations ā Installed MCP Servers ā Refresh.
Windsurf
Windsurf also uses serverUrl. Edit ~/.codeium/windsurf/mcp_config.json
(or Settings ā Cascade ā MCP Servers ā Manage ā View raw config):
{
"mcpServers": {
"stock-research": {
"serverUrl": "https://stock-research-mcp.onrender.com/mcp",
"headers": {
"Authorization": "Bearer mYfUEnx-jnDKlUTHIkUXhCWhMBPgxuzmSvCfxegrt98"
}
}
}
}
Click Refresh in the MCP panel.
VS Code (Copilot agent mode)
Create .vscode/mcp.json in your workspace (or run MCP: Add Server from the Command
Palette):
{
"servers": {
"stock-research": {
"type": "http",
"url": "https://stock-research-mcp.onrender.com/mcp",
"headers": {
"Authorization": "Bearer mYfUEnx-jnDKlUTHIkUXhCWhMBPgxuzmSvCfxegrt98"
}
}
}
}
Open Copilot Chat, switch to Agent mode, and the tools become available.
Other terminal / stdio-only agents
Clients that speak the remote MCP shape can reuse the Cursor block above (url + headers).
For agents that only support local stdio servers, bridge to the remote URL with
mcp-remote:
npx -y mcp-remote https://stock-research-mcp.onrender.com/mcp \
--header "Authorization: Bearer mYfUEnx-jnDKlUTHIkUXhCWhMBPgxuzmSvCfxegrt98"
Point the client's command/args at that (as in the Claude Desktop example).
Usage examples
Once connected, try prompts like:
- "What's AAPL trading at right now?" ā
get_quote - "Compare NVDA, AMD and INTC on valuation." ā
compare_tickers - "Show me TSLA's price history over the last 6 months." ā
get_price_history - "Any recent news on MSFT?" ā
get_news - "Analyze my portfolio: 10 AAPL at $150, 5 MSFT at $300, 20 NVDA at $110." ā
analyze_portfolio
Security
- If
MCP_AUTH_TOKENis set, every request to/mcpmust sendAuthorization: Bearer <token>or it's rejected with401. Always set it in production. - If it's unset, auth is off ā fine for
localhost, never for a public URL. - A shared bearer token is a pragmatic choice for a personal/portfolio project. The MCP spec's full answer for public servers is OAuth 2.1 with PKCE; adopt that if you expose this to untrusted clients.
- The token shown in this README is a deliberately public demo token so anyone can try the
hosted instance. Never reuse it for a private deployment ā generate your own with
python -c "import secrets; print(secrets.token_urlsafe(32))"and keep it secret.
Project structure
.
āāā server.py # FastMCP app: tools, bearer-auth middleware, /health, HTTP transport
āāā portfolio.py # yfinance data layer (pure, testable, returns plain dicts)
āāā requirements.txt # fastmcp, yfinance, uvicorn
āāā render.yaml # Render blueprint (free web service)
āāā .env.example # MCP_AUTH_TOKEN, PORT
āāā README.md
Troubleshooting
| Symptom | Fix |
|---|---|
| First request after idle is very slow | Render free-tier cold start (~30ā60s). Ping /health to warm it, or upgrade the instance. |
401 Unauthorized |
Token in the client header must exactly match MCP_AUTH_TOKEN on the server. |
Empty / error fields from a tool |
yfinance can rate-limit or return partial data. Retry shortly, or verify the ticker symbol. |
| Client shows the server but no tools | Confirm the URL ends in /mcp and (for Antigravity/Windsurf) that you used serverUrl, not url. |
License
MIT ā do whatever you like. Data is provided by Yahoo Finance via yfinance and is subject to
their terms; this project is for research/educational use, not investment advice.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
E2B
Using MCP to run code via e2b.