yfin-mcp

yfin-mcp

An enhanced Yahoo Finance MCP server with pagination, caching, and LLM-optimized responses for stock data, financials, options, and analyst info.

Category
访问服务器

README

yfin-mcp - Yahoo Finance MCP Server

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

<div align="right"> <a href="README.md">English</a> | <a href="README.zh.md">中文</a> </div>

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

Installation

From PyPI (Recommended)

Install the package directly from PyPI:

pip install yfin-mcp

From Source

  1. Clone this repository:

    git clone https://github.com/fritzprix/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

Integration with Claude for Desktop

After installing the package, you can integrate it with Claude for Desktop:

  1. Install the package (if not already installed):

    pip install yfin-mcp
    
  2. Configure Claude Desktop:

    • MacOS: Edit ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows: Edit %APPDATA%\Claude\claude_desktop_config.json
  3. Add the server configuration:

    Using uvx (Recommended - No installation needed):

    {
      "mcpServers": {
        "yfinance": {
          "command": "uvx",
          "args": ["yfin-mcp"]
        }
      }
    }
    

    Using Python directly (if installed via pip):

    {
      "mcpServers": {
        "yfinance": {
          "command": "python",
          "args": ["-m", "yfin_mcp"]
        }
      }
    }
    

    For development/source installation:

    • macOS:
      {
        "mcpServers": {
          "yfinance": {
            "command": "uv",
            "args": [
              "--directory",
              "/ABSOLUTE/PATH/TO/yahoo-finance-mcp",
              "run",
              "server.py"
            ]
          }
        }
      }
      
    • Windows:
      {
        "mcpServers": {
          "yfinance": {
            "command": "uv",
            "args": [
              "--directory",
              "C:\\ABSOLUTE\\PATH\\TO\\yahoo-finance-mcp",
              "run",
              "server.py"
            ]
          }
        }
      }
      
  4. Restart Claude for Desktop

Development Mode

For testing with MCP Inspector:

# From source
uv run yfin-mcp

# Or if installed via pip
python -m yfin_mcp

Publishing to PyPI

To build and publish the package, use the provided scripts. You can optionally provide an argument to bump the version:

Windows

# Just build and publish current version
publish_package.bat

# Bump version and then publish
publish_package.bat patch
publish_package.bat minor
publish_package.bat major

macOS/Linux

chmod +x publish_package.sh

# Just build and publish current version
./publish_package.sh

# Bump version and then publish
./publish_package.sh patch
./publish_package.sh minor
./publish_package.sh major

[!NOTE] The scripts will build the package into the dist/ directory and then use twine to upload it. Ensure you have your PyPI credentials configured in ~/.pypirc (or %HOME%\.pypirc on Windows) or set the TWINE_PASSWORD environment variable.

Troubleshooting

[ERROR] os error 32: Process cannot access the file

If you see this error when running publish_package.bat or uv build, it means the MCP server is still running and locking the executable.

  1. Close Claude Desktop or any app using the yfinance MCP server.
  2. Stop any running MCP Inspector instances.
  3. If the error persists, manually kill the processes:
    taskkill /F /IM yfin-mcp.exe /T
    taskkill /F /IM python.exe /T
    

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.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选