재무 데이터 세트 MCP 서버
소개
이는 금융 데이터세트 의 주식 시장 데이터에 대한 액세스를 제공하는 MCP(모델 컨텍스트 프로토콜) 서버입니다.
클로드와 다른 AI 비서들은 MCP 인터페이스를 통해 손익계산서, 대차대조표, 현금흐름표, 주가, 시장 뉴스를 직접 검색할 수 있습니다.
사용 가능한 도구
이 MCP 서버는 다음과 같은 도구를 제공합니다.
get_income_statements : 회사의 손익 계산서를 가져옵니다.
get_balance_sheets : 회사의 대차대조표를 가져옵니다.
get_cash_flow_statements : 회사의 현금 흐름 명세서를 가져옵니다.
get_current_stock_price : 회사의 현재/최신 가격을 받아보세요.
get_historical_stock_prices : 회사의 과거 주가를 가져옵니다.
get_company_news : 회사의 뉴스를 받아보세요.
get_available_crypto_tickers : 사용 가능한 모든 암호화폐 티커를 가져옵니다.
get_crypto_prices : 암호화폐의 과거 가격을 가져옵니다.
get_historical_crypto_prices : 암호화폐의 과거 가격을 가져옵니다.
get_current_crypto_price : 암호화폐의 현재/최신 가격을 받아보세요.
설정
필수 조건
Python 3.10 이상
uv 패키지 관리자
설치
이 저장소를 복제하세요:
지엑스피1
uv가 설치되어 있지 않다면 설치하세요:
# macOS/Linux curl -LsSf https://astral.sh/uv/install.sh | sh # Windows curl -LsSf https://astral.sh/uv/install.ps1 | powershell종속성 설치:
# Create virtual env and activate it uv venv source .venv/bin/activate # On Windows: .venv\Scripts\activate # Install dependencies uv add "mcp[cli]" httpx # On Windows: uv add mcp[cli] httpx환경 변수 설정:
# Create .env file for your API keys cp .env.example .env # Set API key in .env FINANCIAL_DATASETS_API_KEY=your-financial-datasets-api-key서버를 실행합니다:
uv run server.py
Claude Desktop에 연결
아직 Claude Desktop을 설치하지 않았다면 설치하세요.
Claude Desktop 구성 파일을 생성하거나 편집합니다.
# macOS mkdir -p ~/Library/Application\ Support/Claude/ nano ~/Library/Application\ Support/Claude/claude_desktop_config.json다음 구성을 추가합니다.
{ "mcpServers": { "financial-datasets": { "command": "/path/to/uv", "args": [ "--directory", "/absolute/path/to/financial-datasets-mcp", "run", "server.py" ] } } }/path/to/uv``which uv
의 결과로 바꾸고,/absolute/path/to/financial-datasets-mcp
이 프로젝트의 절대 경로로 바꿉니다.Claude Desktop을 다시 시작하세요
이제 Claude Desktop의 도구 메뉴(망치 아이콘)에서 사용 가능한 재무 도구를 볼 수 있습니다.
클로드에게 다음과 같은 질문을 해보세요.
"애플의 최근 손익 계산서는 어떤가요?"
"테슬라 주식의 현재 가격을 보여주세요"
"2024년 1월 1일부터 2024년 12월 31일까지 MSFT의 과거 가격을 확인하세요"
remote-capable server
The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.
Tools
모델 컨텍스트 프로토콜 인터페이스를 통해 재무제표, 주가, 시장 뉴스 등의 주식 시장 데이터에 AI 비서가 접근할 수 있도록 해주는 MCP 서버입니다.
Related Resources
Related MCP Servers
- AsecurityAlicenseAqualityA Model Context Protocol (MCP) server that provides real-time access to financial market data through the free Alpha Vantage API. This server implements a standardized interface for retrieving stock quotes and company information.Last updated -72MIT License
- -securityAlicense-qualityAn MCP server that integrates with the AlphaVantage financial data API, providing access to stock market data, technical indicators, and fundamental financial information.Last updated -MIT License
- -securityFlicense-qualityProvides real-time access to global stock market data including current prices, historical charts, and company financial information through a Model Context Protocol (MCP) server for AI assistants.Last updated -
- AsecurityFlicenseAqualityMCP server that exposes Alpaca Market Data & Broker API as tools, enabling access to financial data like stock bars, assets, market days, and news through the Message Control Protocol.Last updated -402