/ 디렉터리 / 플레이그라운드 / yahoo-finance-mcp
● 커뮤니티 Alex2Yang97 ⚡ 바로 사용

yahoo-finance-mcp

제작: Alex2Yang97 · Alex2Yang97/yahoo-finance-mcp

Free Yahoo Finance data from chat — historical prices, statements, options, analyst calls — no API key, no quota to manage.

yahoo-finance-mcp wraps the public yfinance library. It exposes OHLCV history, company info, financial statements, holders, options chains, and analyst recommendations. Perfect for casual research; not for production trading (Yahoo's data is best-effort, no SLA).

왜 쓰나요

핵심 기능

라이브 데모

실제 사용 모습

yahoo-finance.replay ▶ 준비됨
0/0

설치

클라이언트 선택

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "yahoo-finance": {
      "command": "uvx",
      "args": [
        "yahoo-finance-mcp"
      ],
      "_inferred": true
    }
  }
}

Claude Desktop → Settings → Developer → Edit Config 열기. 저장 후 앱 재시작.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "yahoo-finance": {
      "command": "uvx",
      "args": [
        "yahoo-finance-mcp"
      ],
      "_inferred": true
    }
  }
}

Cursor는 Claude Desktop과 동일한 mcpServers 스키마 사용. 프로젝트 설정이 전역보다 우선.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "yahoo-finance": {
      "command": "uvx",
      "args": [
        "yahoo-finance-mcp"
      ],
      "_inferred": true
    }
  }
}

Cline 사이드바의 MCP Servers 아이콘 클릭 후 "Edit Configuration" 선택.

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "yahoo-finance": {
      "command": "uvx",
      "args": [
        "yahoo-finance-mcp"
      ],
      "_inferred": true
    }
  }
}

Claude Desktop과 같은 형식. Windsurf 재시작 후 적용.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "yahoo-finance",
      "command": "uvx",
      "args": [
        "yahoo-finance-mcp"
      ]
    }
  ]
}

Continue는 맵이 아닌 서버 오브젝트 배열 사용.

~/.config/zed/settings.json
{
  "context_servers": {
    "yahoo-finance": {
      "command": {
        "path": "uvx",
        "args": [
          "yahoo-finance-mcp"
        ]
      }
    }
  }
}

context_servers에 추가. 저장 시 Zed가 핫 리로드.

claude mcp add yahoo-finance -- uvx yahoo-finance-mcp

한 줄 명령. claude mcp list로 확인, claude mcp remove로 제거.

사용 사례

실전 활용법: yahoo-finance-mcp

Get a quick snapshot on a stock

👤 Curious investors, finance students ⏱ ~3 min beginner

언제 쓸까: You want a 30-second summary before reading deeper.

사전 조건
  • yahoo-finance-mcp installed — uvx --from git+https://github.com/Alex2Yang97/yahoo-finance-mcp yahoo-finance-mcp
흐름
  1. Basic info
    Give me the current snapshot on NVDA — price, market cap, P/E, 52-week range.✓ 복사됨
    → Clean data card
  2. Recent news
    Latest 5 news items on NVDA with headlines and publication dates.✓ 복사됨
    → News feed
  3. Analyst view
    Show analyst recommendations trend and any rating changes in the last 60 days.✓ 복사됨
    → Rating counts and recent changes

결과: A one-screen briefing for any ticker.

함정
  • Yahoo data is delayed/best-effort — don't use for real-time trading — For live decisions, use a paid data feed; this is for research
  • International tickers need exchange suffix (7203.T for Toyota) — Include the suffix explicitly when asking
함께 쓰기: notion

Compare fundamentals across several peers

👤 DIY investors doing homework ⏱ ~10 min intermediate

언제 쓸까: You want a side-by-side before picking between similar names.

흐름
  1. Pull statements
    Compare MSFT, GOOGL, META on revenue growth, operating margin, and FCF for the last 4 annual filings.✓ 복사됨
    → Comparison table
  2. Normalize
    Express everything as year-over-year % to make the comparison fair.✓ 복사됨
    → Normalized view

결과: A peer comparison you can save for later.

Explore an options chain

👤 Options learners ⏱ ~10 min intermediate

언제 쓸까: You want to see what contracts exist before paper-trading.

흐름
  1. List expirations
    Available option expirations for AAPL.✓ 복사됨
    → Date list
  2. Pull a chain
    Get the AAPL options chain for the nearest monthly expiration. Calls only, strikes within 5% of spot.✓ 복사됨
    → Filtered calls table

결과: A readable options view without an options-screener subscription.

Check dividend and split history

👤 Income-focused investors ⏱ ~5 min beginner

언제 쓸까: Evaluating dividend consistency or adjusted-basis calculations.

흐름
  1. Pull actions
    Dividend and split history for KO for the last 20 years.✓ 복사됨
    → Two timelines
  2. Assess consistency
    Any missed or cut dividends? Call it out.✓ 복사됨
    → Narrative with specifics

결과: Data-grounded view of long-term dividend discipline.

조합

다른 MCP와 조합해 10배 효율

yahoo-finance + notion

Build a watchlist dossier per ticker in Notion

For each ticker in my Notion Watchlist, pull the current snapshot + recent news + analyst ratings and append as a dated block.✓ 복사됨
yahoo-finance + maverick

Pair Yahoo data with technical analysis from maverick-mcp

Get NVDA fundamentals from Yahoo and RSI/MACD from maverick-mcp; synthesize a pro/con memo.✓ 복사됨

도구

이 MCP가 노출하는 것

도구입력언제 호출비용
get_historical_stock_prices ticker: str, period?: str, interval?: str Price history / backtests / charting 1 yahoo request
get_stock_info ticker: str Quick card on a stock 1 request
get_yahoo_finance_news ticker: str Headlines per ticker 1 request
get_stock_actions ticker: str Dividend/split timeline 1 request
get_financial_statement ticker: str, type: income|balance|cashflow, annual|quarterly Fundamentals research 1 request
get_holder_info ticker: str Institutional/insider analysis 1 request
get_option_expiration_dates ticker: str Options workflow setup 1 request
get_option_chain ticker: str, expiration: date Examine contracts for an expiry 1 request
get_recommendations ticker: str Sentiment cross-check 1 request

비용 및 제한

운영 비용

API 쿼터
Yahoo's public endpoints are best-effort; no official published limit — don't hammer
호출당 토큰
200-2000 per response depending on depth
금액
Free
Cache statement queries — they update quarterly, not hourly. Avoid polling.

보안

권한, 시크릿, 파급범위

자격 증명 저장: None
데이터 외부 송신: Queries to finance.yahoo.com (via yfinance library)

문제 해결

자주 발생하는 오류와 해결

Empty data for ticker

Ticker symbol wrong or delisted; try the exchange-suffixed form (e.g. TSLA vs 'TSLA.BA' for BA listing).

확인: Search yahoo finance web for the ticker
429 Too Many Requests

yfinance hit Yahoo's informal limits. Back off 5 min; avoid tight loops.

ImportError on yfinance

Reinstall with uvx --upgrade — yfinance version lag is common.

확인: uvx --from ... yahoo-finance-mcp --help

대안

yahoo-finance-mcp 다른 것과 비교

대안언제 쓰나단점/장점
maverick-mcpYou want technical analysis, screens, backtesting on top of dataLarger surface; requires Tiingo key
Alpaca / IEX Cloud MCPsYou need real-time and a paid SLANot free; different data shape

더 보기

리소스

📖 GitHub에서 공식 README 읽기

🐙 열린 이슈 보기

🔍 400+ MCP 서버 및 Skills 전체 보기