Skip to main content

Enhanced Yahoo Finance MCP Server with intelligent pagination, caching, and LLM-optimized responses

Project description

yfin-mcp - Yahoo Finance MCP Server

Enhanced fork of yahoo-finance-mcp by Alex2Yang97
With intelligent pagination, caching, and LLM-optimized responses

A high-performance Model Context Protocol (MCP) server that provides comprehensive financial data from Yahoo Finance with intelligent pagination, caching, and LLM-optimized responses.


🙏 Attribution & Motivation

Original Work

This project is built upon the excellent foundation of yahoo-finance-mcp created by Alex2Yang97. The original implementation provides a comprehensive set of tools for accessing Yahoo Finance data through the Model Context Protocol.

Why These Enhancements?

While using the original implementation with LLM agents (Claude, ChatGPT, etc.), I encountered critical limitations:

Problem 1: Context Window Overflow

  • Historical stock data with period="max" could return thousands of rows
  • Option chains for popular stocks contained hundreds of contracts
  • LLM context windows (typically 200K tokens) would overflow
  • Responses would be truncated, losing critical data

Problem 2: No Data Persistence

  • Large datasets couldn't be saved for offline analysis
  • Repeated queries wasted API calls and time
  • No way to export data for use in other tools

Problem 3: Poor LLM Readability

  • JSON responses were hard for LLMs to parse when truncated
  • No clear navigation guidance for paginated data
  • Cache status was invisible to the LLM

Solution: Pagination, Caching & Export

This fork adds three key enhancements:

  1. Token-Based Pagination (6,000 token limit per page)

    • Prevents context window overflow
    • Clear navigation guidance for LLMs
    • Dynamic page sizing based on data complexity
  2. Intelligent Caching (TTL: 5min-1hr)

    • Reduces redundant API calls by 50-80%
    • Sub-millisecond response times for cached data
    • Automatic cache invalidation based on data volatility
  3. JSON Export (File Download)

    • Save full datasets for offline analysis
    • Export to Excel, databases, or other tools
    • Preserve complete data without pagination

Credit Where Credit is Due

Original Author: Alex2Yang97 deserves full credit for:

  • ✅ Complete Yahoo Finance API integration
  • ✅ All 9 MCP tools implementation
  • ✅ Robust error handling
  • ✅ Comprehensive documentation

This Fork Adds: Pagination, caching, and export features to make the server production-ready for LLM agents handling large financial datasets.

Demo

MCP Demo

MCP Tools

The server exposes the following tools through the Model Context Protocol:

Stock Information

Tool Description
get_historical_stock_prices Get historical OHLCV data for a stock with customizable period and interval
get_stock_info Get comprehensive stock data including price, metrics, and company details
get_yahoo_finance_news Get latest news articles for a stock
get_stock_actions Get stock dividends and splits history

Financial Statements

Tool Description
get_financial_statement Get income statement, balance sheet, or cash flow statement (annual/quarterly)
get_holder_info Get major holders, institutional holders, mutual funds, or insider transactions

Options Data

Tool Description
get_option_expiration_dates Get available options expiration dates
get_option_chain Get options chain for a specific expiration date and type (calls/puts)

Analyst Information

Tool Description
get_recommendations Get analyst recommendations or upgrades/downgrades history

Real-World Use Cases

With this MCP server, you can use Claude to:

Stock Analysis

  • Price Analysis: "Show me the historical stock prices for AAPL over the last 6 months with daily intervals."
  • Financial Health: "Get the quarterly balance sheet for Microsoft."
  • Performance Metrics: "What are the key financial metrics for Tesla from the stock info?"
  • Trend Analysis: "Compare the quarterly income statements of Amazon and Google."
  • Cash Flow Analysis: "Show me the annual cash flow statement for NVIDIA."

Market Research

  • News Analysis: "Get the latest news articles about Meta Platforms."
  • Institutional Activity: "Show me the institutional holders of Apple stock."
  • Insider Trading: "What are the recent insider transactions for Tesla?"
  • Options Analysis: "Get the options chain for SPY with expiration date 2024-06-21 for calls."
  • Analyst Coverage: "What are the analyst recommendations for Amazon over the last 3 months?"

Investment Research

  • "Create a comprehensive analysis of Microsoft's financial health using their latest quarterly financial statements."
  • "Compare the dividend history and stock splits of Coca-Cola and PepsiCo."
  • "Analyze the institutional ownership changes in Tesla over the past year."
  • "Generate a report on the options market activity for Apple stock with expiration in 30 days."
  • "Summarize the latest analyst upgrades and downgrades in the tech sector over the last 6 months."

Requirements

  • Python 3.11 or higher
  • Dependencies as listed in pyproject.toml, including:
    • mcp
    • yfinance
    • pandas
    • pydantic
    • and other packages for data processing

Setup

  1. Clone this repository:

    git clone https://github.com/Alex2Yang97/yahoo-finance-mcp.git
    cd yahoo-finance-mcp
    
  2. Create and activate a virtual environment and install dependencies:

    uv venv
    source .venv/bin/activate  # On Windows: .venv\Scripts\activate
    uv pip install -e .
    

Usage

Development Mode

You can test the server with MCP Inspector by running:

uv run server.py

This will start the server and allow you to test the available tools.

Integration with Claude for Desktop

To integrate this server with Claude for Desktop:

  1. Install Claude for Desktop to your local machine.

  2. Install VS Code to your local machine. Then run the following command to open the claude_desktop_config.json file:

    • MacOS: code ~/Library/Application\ Support/Claude/claude_desktop_config.json
    • Windows: code $env:AppData\Claude\claude_desktop_config.json
  3. Edit the Claude for Desktop config file, located at:

    • macOS:

      {
        "mcpServers": {
          "yfinance": {
            "command": "uv",
            "args": [
              "--directory",
              "/ABSOLUTE/PATH/TO/PARENT/FOLDER/yahoo-finance-mcp",
              "run",
              "server.py"
            ]
          }
        }
      }
      
    • Windows:

      {
        "mcpServers": {
          "yfinance": {
            "command": "uv",
            "args": [
              "--directory",
              "C:\\ABSOLUTE\\PATH\\TO\\PARENT\\FOLDER\\yahoo-finance-mcp",
              "run",
              "server.py"
            ]
          }
        }
      }
      
    • Note: You may need to put the full path to the uv executable in the command field. You can get this by running which uv on MacOS/Linux or where uv on Windows.

  4. Restart Claude for Desktop

License

MIT License

Original Work: Copyright (c) 2025 AlexYoung
Fork Enhancements: Copyright (c) 2026 SKTelecom

This project maintains the MIT License from the original yahoo-finance-mcp project. All enhancements (pagination, caching, export) are also released under MIT License.

See LICENSE file for full details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

yfin_mcp-0.1.0.tar.gz (7.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

yfin_mcp-0.1.0-py3-none-any.whl (5.6 kB view details)

Uploaded Python 3

File details

Details for the file yfin_mcp-0.1.0.tar.gz.

File metadata

  • Download URL: yfin_mcp-0.1.0.tar.gz
  • Upload date:
  • Size: 7.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.4

File hashes

Hashes for yfin_mcp-0.1.0.tar.gz
Algorithm Hash digest
SHA256 71708f4a7a5dfec8c3056d8cb3f3b769d1f6e87ce2ef7c4335abaee1a22cb4e0
MD5 0819641df31ba22bd92bd848167053d2
BLAKE2b-256 820a2a0b74024a83a8231b2420b85a826a88360828f81d8ecec3b4f9dd6eb230

See more details on using hashes here.

File details

Details for the file yfin_mcp-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: yfin_mcp-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 5.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.4

File hashes

Hashes for yfin_mcp-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c31d7d62d76b8719a8af2f730396954a3e0a70f2ed42cc86ea1488682195c4cc
MD5 844aa57bf93b945b16e3c6f441d35441
BLAKE2b-256 afc9d6d076c27161750d8ecc475203c0656b08afe9a2ef3d557c2ceb770d48e9

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page