Zentickr - Yahoo Finance MCP Server
Allows access to Amazon's analyst recommendations and financial performance data through Yahoo Finance.
Enables querying of Apple's financial data, stock prices, company profile, leadership information, and market performance metrics through Yahoo Finance.
Provides tools for accessing Google's financial information, stock data, and company metrics through the Yahoo Finance platform.
Enables comparison of Meta's key financial metrics and valuation measures with other tech companies through Yahoo Finance data.
Provides access to Netflix's quarterly income statements and financial performance metrics through Yahoo Finance.
Enables symbol search and retrieval of NVIDIA's financial information through Yahoo Finance data.
Allows retrieval of Tesla's detailed company information, financial statements, stock performance, and leadership data through Yahoo Finance.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Zentickr - Yahoo Finance MCP Servershow me Apple's current stock price and analyst recommendations"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Zentickr — Yahoo Finance MCP Server
Zentickr is a stdio-based Model Context Protocol (MCP) server that gives AI assistants access to 23 Yahoo Finance tools through the yahooquery library—covering prices, fundamentals, statements, analyst research, ownership, events, and symbol discovery.
⚠️ Important Disclaimer
This software is provided for educational and informational purposes only. It does not provide financial, investment, legal, or tax advice. Market data may be delayed, incomplete, or inaccurate. You are solely responsible for your investment decisions; the authors are not liable for any losses or damages arising from use of this software.
Related MCP server: MCP Yahoo Finance
Quickstart
git clone https://github.com/chintan-diwakar/zentickr-yahoo-query-mcp.git
cd zentickr-yahoo-query-mcp
python -m venv .venv && source .venv/bin/activate
pip install -e .Run the server over stdio:
zentickrOr:
python -m zentickrClient setup
Claude Desktop
Add this to claude_desktop_config.json:
{
"mcpServers": {
"zentickr": {
"command": "/absolute/path/to/zentickr-yahoo-query-mcp/.venv/bin/zentickr"
}
}
}Claude Code
claude mcp add zentickr -- /absolute/path/to/zentickr-yahoo-query-mcp/.venv/bin/zentickrCursor
Create or update .cursor/mcp.json:
{
"mcpServers": {
"zentickr": {
"command": "/absolute/path/to/zentickr-yahoo-query-mcp/.venv/bin/zentickr"
}
}
}Real-world use cases
Compare Apple and Microsoft fundamentals
Prompt: “Compare Apple and Microsoft fundamentals.”
The assistant can call get_financial_data(symbols="AAPL,MSFT") and get_valuation_measures(symbols="AAPL,MSFT").
Captured output excerpt:
Financial Data:
{
"AAPL": {
"currentPrice": 333.26,
"targetHighPrice": 400.0,
"targetLowPrice": 215.0,
"targetMeanPrice": 315.78604,
"recommendationKey": "buy",
"numberOfAnalystOpinions": 43,
"totalCash": 68507000832,
"totalDebt": 84710998016,
"totalRevenue": 451442016256,
"earningsGrowth": 0.218,
"revenueGrowth": 0.166
}
}Valuation Measures:
[
{
"symbol": "AAPL",
"asOfDate": "2026-05-28 00:00:00",
"periodType": "TTM",
"ForwardPeRatio": 35.3357,
"MarketCap": 4589945623560.0,
"PbRatio": 43.101723,
"PeRatio": 37.83414,
"PegRatio": 2.7194
}
]Prep me for AAPL earnings
Prompt: “Prep me for AAPL earnings.”
The assistant can call get_calendar_events(symbols="AAPL") and get_earnings_trend(symbols="AAPL").
Captured output excerpts:
Calendar Events:
{
"AAPL": {
"earnings": {
"earningsDate": [
"2026-07-31 01:30:S"
],
"earningsAverage": 1.89396,
"earningsLow": 1.83,
"earningsHigh": 1.99,
"revenueAverage": 108890141050
}
}
}Earnings Trend:
{
"AAPL": {
"trend": [
{
"period": "0q",
"endDate": "2026-06-30",
"growth": 0.20629999,
"earningsEstimate": {
"avg": 1.89396,
"numberOfAnalysts": 31,
"yearAgoEps": 1.57
}
}
]
}
}Find NVIDIA's ticker and current price
Prompt: “Find NVIDIA's ticker and current price.”
The assistant can call search_symbols(query="nvidia"), then get_price_data(symbols="NVDA").
Captured output excerpts:
Search Results for 'nvidia':
[
{
"symbol": "NVDA",
"name": "NVIDIA Corporation",
"type": "EQUITY",
"exchange": "NMS"
}
]Price Data:
{
"NVDA": {
"preMarketPrice": 202.155,
"regularMarketPrice": 207.4,
"regularMarketDayHigh": 211.08,
"regularMarketDayLow": 205.85,
"regularMarketVolume": 116253420,
"regularMarketPreviousClose": 212.5,
"exchangeName": "NasdaqGS",
"marketState": "PRE",
"symbol": "NVDA"
}
}Tool catalog
Market Data
Tool | Arguments | Returns |
|
| Current price and trading data |
|
| Day range, volume, dividend, and 52-week range |
|
| Historical OHLCV price data |
|
| Upcoming earnings dates and dividend events |
Financial Statements
Tool | Arguments | Returns |
|
| Key financial data, including targets, margins, cash, debt, and growth |
|
| Balance sheet data |
|
| Cash flow statement |
|
| Income statement |
|
| Market cap, P/E, EV, and price/book measures |
|
| Earnings data |
|
| Earnings trend estimates |
Analysis & Research
Tool | Arguments | Returns |
|
| Analyst recommendations |
|
| Strong buy, buy, hold, sell, and strong sell counts |
|
| Technical analysis insights |
|
| Environmental, social, and governance scores |
|
| Company sector, industry, description, and address |
Ownership & Governance
Tool | Arguments | Returns |
|
| Major holders breakdown |
|
| Institutional ownership |
|
| Insider holders |
|
| Insider transactions |
|
| Mutual fund and ETF ownership |
|
| Executives, titles, and compensation |
Discovery
Tool | Arguments | Returns |
|
| Matching stock symbols by company name or partial ticker |
symbols is a comma-separated string, such as "AAPL,GOOGL,MSFT". Statement frequency accepts "annual" or "quarterly".
Development
Install development dependencies:
pip install -e ".[dev]"Run the offline test suite and linter:
pytest
ruff check .See CONTRIBUTING.md for the full contribution guide.
Data source
Data is sourced from Yahoo Finance through the unofficial yahooquery library. It is subject to Yahoo's terms and no API key is required.
License
MIT — see LICENSE.
Support
Please open a GitHub Issue.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceA Model Context Protocol server providing real-time stock data and options analysis through Yahoo Finance, enabling LLMs to access market data, analyze stocks, and evaluate options strategies.Last updated25MIT
- AlicenseBqualityBmaintenanceA Model Context Protocol server that enables interaction with Yahoo Finance to retrieve stock pricing, company information, and historical financial data through natural language queries.Last updated1027MIT
- AlicenseCquality-maintenanceA Model Context Protocol server that provides tools for interacting with Yahoo Finance, allowing users to retrieve stock prices, company information, and perform financial data comparisons.Last updated11
- Alicense-qualityDmaintenanceProvides real-time financial data from Yahoo Finance to Large Language Models through the Model Context Protocol, enabling AI models to access stock prices, historical data, and company information.Last updated1MIT
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
A Model Context Protocol server for Wix AI tools
The financial MCP for AI agents - 90+ financial tables, SEC filings, signals, alt-data.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/chintan-diwakar/zentickr-yahoo-query-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server