πŸ’Ή MCP YFinance Stock Server

πŸ’Ή MCP YFinance Stock Server

Real-time stock API with Python, MCP server example, yfinance stock analysis dashboard

Adity-star

Research & Data
Visit Server

README

πŸ’Ή MCP YFinance Stock Server

Python MCP License

This project sets up a stock Price server powered by the Yahoo Finance (YFinance) API and built for seamless integration with MCP (Multi-Agent Control Protocol).

It allows AI agents or clients to:

  • Retrieve real-time stock data
  • Manage a watchlist
  • Perform full stock analysis
  • Run full technical indicators
  • And much more

image


πŸͺ™ Start Simple: Build a Crypto Price Tracker First

Before diving into the full-blown stock server, I recommend starting with this simple crypto tracker built with Python + MCP πŸ‘‡

πŸ”— GitHub Repo: https://github.com/Adity-star/mcp-crypto-server

You'll learn how to:

  • Use MCP to expose crypto tools like get_price("BTC")
  • Build an API with FastAPI
  • Fetch real-time prices using the Alpaca API

πŸ“ˆ Then Level Up: Build the yFinance Stock Server

Once you're familiar with the flow, move on to this more advanced stock tracker πŸ’Ή

πŸ”— GitHub Repo: https://github.com/Adity-star/mcp-yfinance-server

πŸ“ Detailed Blog: πŸ‘‰ How I Built My Own Stock Server with Python, yFinance, and a Touch of Nerdy Ambition

Includes:

  • Watchlists
  • Real-time(ish) price updates
  • Technical summaries
  • A full-featured dashboard
  • Trend + momentum indicators
  • Watchlist management

πŸ“¦ Step 1: Set Up the Environment (with uv)

We use uv β€” a modern, ultra-fast Python package manager β€” to manage our project environment.

πŸ› οΈ Installation & Setup

Run the following commands in your terminal:

# Install uv
curl -LsSf https://astral.sh/uv/install.sh | sh 

# Create and navigate to your project directory
mkdir mcp-yfinance-server
cd mcp-yfinance-server

# Initialize a new project
uv init

# Create and activate the virtual environment
uv venv
source .venv/bin/activate  # On Windows: .venv\Scripts\activate

πŸ“₯ Install the project

Once your pyproject.toml is set up with dependencies, run:

#  Run 
uv install .

πŸš€ Step 2: Running the MCP Server

Once your environment is ready, start the stock server:

cp ../yf_serve.py .
uv run source/yf_server.py

πŸ§ͺ Want a quick test first? Try running the lightweight demo server:

uv run demo_stock_price_server.py

πŸ“„ Curious how the full server works?

Explore the source code here:

πŸ”— yf_server.py β€Ί GitHub


πŸ› οΈ MCP Tool Reference

The server exposes many tools for AI agents and CLI users.
Here are some important tools, check out the complete tools list here:

πŸ“¦ Tool List

Tool Name Description
add_to_watchlist Add a stock ticker to your personal watchlist.
analyze_stock Perform a 1-month technical trend analysis (RSI, MACD, MAs)..
get_technical_summary Generate a comprehensive technical summary including indicators & signals..
get_watchlist_prices Fetch the most recent prices for all watchlisted tickers.
get_trend_analysiss Analyze recent trend shifts, patterns, and divergences..
get_stock_price Retrieve the current price for a given ticker symbol.
get_volatility_analysis Calculate historical volatility and ATR metrics..
compare_stocks Compare two stock prices (useful for relative performance analysis).

βœ… Total: 18 powerful tools to analyze and monitor stocks with precision.

🧠 Use Cases

These tools are ideal for:

  • πŸ“Š Dynamic watchlist management
  • πŸ” Trend and momentum detection
  • πŸ“ˆ Deep-dive technical analysis for investment decisions
  • ⚠️ Volatility-based risk assessment
  • πŸ€– Powering stock-focused autonomous agents or dashboards

βš™οΈ Keep this reference handy for building intelligent financial applications with the MCP server.


πŸ” Step 3: Inspecting the MCP Server

Easily explore and test your MCP tools using the MCP Server Inspector. Run the following command in your terminal:

$ mcp dev source/yf_server.py

This launches an interactive UI to:

  • 🧰 View all available tools and resources
  • πŸ“₯ Test input/output for each tool
  • πŸ“‘ Monitor real-time responses from your server

image


βš™οΈ Step 4: Configure Your MCP Server

To integrate your YFinance MCP server, add the following entry to your mcp.config.json file:

{
  "mcpServers": {
    "yfinance-price-tracker": {
      "command": "/ABSOLUTE/PATH/TO/uv",
      "args": [
        "--directory",
        "/ABSOLUTE/PATH/TO/YOUR/mcp-yfinance-server",
        "run",
        "yf_server.py"
      ]
    }
  }
}

⚠️ Replace /ABSOLUTE/PATH/TO/... with actual file paths. πŸ’‘ Tip: Rename your server from crypto-price-tracker to yfinance-price-tracker for clarity.


πŸ” Step 5: Restart Claude Desktop

Restart Claude Desktop (or any interface that uses MCP) to reload and activate your new YFinance tools.

This ensures the updated MCP configuration is recognized and all stock tracking tools are ready to use.


βœ… Step 6: Testing the MCP Server with Claude Desktop

  • With everything installed and configured, you're ready to test your MCP server in Claude Desktop.

Use these example queries to test your MCP YFinance Server in action:

"Compare the stock prices of Tesla and Apple." β†’ πŸ”§ Uses compare_stocks

"Get the historical data for Tesla over the past month." β†’ πŸ“Š Uses get_stock_history

"Add Apple, Tesla, and Reliance to my watchlist." β†’ πŸ“‹ Uses add_to_watchlist

"Show me a chart of Apple’s stock over the last 30 days." β†’ πŸ–ΌοΈ Claude can fetch + visualize data using your server

πŸ“· Sample Chart: πŸ–Ό view Screenshot

🌐 Live Claude Site: Open Demo on Claude.site

πŸ§ͺ These tests ensure your MCP integration is working end-to-endβ€”from data retrieval to real-time analysis and visualization.


πŸ“Š Results

βš™οΈ Outcomes You Can Expect

Feature Outcome
βœ… Stock Analysis Analyse stock giving price, OHLC, returns, volume, insights and data.
πŸ“ˆ Technical Analysis Access indicators like RSI, MACD, MA, and a complete technical summary.
πŸ“‰ Volatility Reports Analyze stock risk with ATR and volatility metrics.
πŸ” Trend Analysis Detect trend shifts and divergence using price movement analysis.
🧠 Visualisations 18+ tools ready to power AI agents or dashboards to visualise stock.
πŸ“‹ Technical Charts Analyse and monitor technical indicators for stocks in real-time.
πŸ–ΌοΈ Visual Insights Generate charts and visual summaries with Claude Desktop.

πŸŽ‰ Ready to build your stock-tracking bot or intelligent financial dashboard? This project has all the core pieces.


πŸ“« Feedback & Contributions

Contributions are welcome! Whether you're fixing bugs, adding features, or improving documentation, your help makes this project better.

πŸ› Reporting Issues

If you encounter bugs or have suggestions, please open an issue in the Issues section. Be sure to include:

  • βœ… Steps to reproduce (if applicable)
  • πŸ” Expected vs. actual behavior
  • πŸ“· Screenshots or error logs (if relevant)

πŸ“¬ Submit a Pull Request

Have a fix or improvement? Head over to the Pull Requests section and submit your PR. We’ll review and merge it ASAP!


πŸ’¬ Spread the Word

If this project saved you from API rate limits or overpriced SaaS tools...

  • 🌟 Star the repo
  • 🍴 Fork it and build your own crypto/stock tool
  • πŸ“² Tag me on X @AdityaAkuskar β€” I’d love to see what you build!
  • πŸ”— Connect with me on LinkedIn

πŸ“œ License

MIT Β© 2025 Ak Aditya.


πŸš€ Let’s build better tools together.

If you’d like a tweet thread, carousel, or launch post for this β€” I’ve got your back 😎

Recommended Servers

Crypto Price & Market Analysis MCP Server

Crypto Price & Market Analysis MCP Server

A Model Context Protocol (MCP) server that provides comprehensive cryptocurrency analysis using the CoinCap API. This server offers real-time price data, market analysis, and historical trends through an easy-to-use interface.

Featured
TypeScript
MCP PubMed Search

MCP PubMed Search

Server to search PubMed (PubMed is a free, online database that allows users to search for biomedical and life sciences literature). I have created on a day MCP came out but was on vacation, I saw someone post similar server in your DB, but figured to post mine.

Featured
Python
dbt Semantic Layer MCP Server

dbt Semantic Layer MCP Server

A server that enables querying the dbt Semantic Layer through natural language conversations with Claude Desktop and other AI assistants, allowing users to discover metrics, create queries, analyze data, and visualize results.

Featured
TypeScript
mixpanel

mixpanel

Connect to your Mixpanel data. Query events, retention, and funnel data from Mixpanel analytics.

Featured
TypeScript
Sequential Thinking MCP Server

Sequential Thinking MCP Server

This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.

Featured
Python
Nefino MCP Server

Nefino MCP Server

Provides large language models with access to news and information about renewable energy projects in Germany, allowing filtering by location, topic (solar, wind, hydrogen), and date range.

Official
Python
Vectorize

Vectorize

Vectorize MCP server for advanced retrieval, Private Deep Research, Anything-to-Markdown file extraction and text chunking.

Official
JavaScript
Mathematica Documentation MCP server

Mathematica Documentation MCP server

A server that provides access to Mathematica documentation through FastMCP, enabling users to retrieve function documentation and list package symbols from Wolfram Mathematica.

Local
Python
kb-mcp-server

kb-mcp-server

An MCP server aimed to be portable, local, easy and convenient to support semantic/graph based retrieval of txtai "all in one" embeddings database. Any txtai embeddings db in tar.gz form can be loaded

Local
Python
Research MCP Server

Research MCP Server

The server functions as an MCP server to interact with Notion for retrieving and creating survey data, integrating with the Claude Desktop Client for conducting and reviewing surveys.

Local
Python