- Home
- MCP servers
- Yahoo Finance
Yahoo Finance
- python
1
GitHub Stars
python
Language
5 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"laxmimerit-yahoo-finance-mcp-server": {
"command": "uvx",
"args": [
"yahoo-finance-mcp-server"
],
"env": {
"YOUR_TOKEN": "YOUR_API_TOKEN"
}
}
}
}This MCP server provides access to Yahoo Finance data through a standardized Model Context Protocol interface. You can fetch real-time and historical prices, financials, news, options, holders, and more, enabling AI assistants to answer finance questions with structured data.
How to use
You interact with the Yahoo Finance MCP Server through an MCP client that communicates over stdio. Start the server using one of the recommended execution methods, then ask your client to request data such as historical prices, company fundamentals, news, or options data. You can combine multiple tools to build answers that cover prices, financial statements, and corporate actions. The server responds with JSON data that you can parse and present in your assistant.
Available tools
get_historical_stock_prices
Retrieve historical price data for a ticker with configurable period and interval.
get_stock_info
Fetch comprehensive stock information including price, company details, and financial metrics.
get_yahoo_finance_news
Obtain the latest news articles for a given ticker.
get_stock_actions
Get dividend and stock split history for a ticker.
get_financial_statement
Retrieve income statements, balance sheets, or cash flow statements.
get_holder_info
Access institutional, mutual fund, and insider holder data.
get_option_expiration_dates
List available option expiration dates for a ticker.
get_option_chain
Fetch option chain data for calls or puts for a specific expiration.
get_recommendations
Obtain analyst recommendations and upgrades/downgrades.