yahoo-finance
3.9
The Yahoo-Finance MCP Server provides live financial data and features from Yahoo Finance, ensuring data is synced with the official site.
The Yahoo-Finance MCP Server reproduces live public data and features from Yahoo Finance. The server ensures that the response data is always live and synced with the official site at the time of the request, offering comprehensive financial information and analysis. Users can access a wide array of financial data, including stock summaries, quotes, market movers, and more.
Features
- {'name': 'Financial Data Access', 'description': 'Provides access to a broad range of financial data, including stock fundamentals, recommendations, upgrades/downgrades, chart data, statistics, company profiles, options pricing, holder information, and top holdings.'}
- {'name': 'News and Analysis', 'description': 'Access to the latest news, detailed news, and conversations related to financial symbols.'}
- {'name': 'Screeners and Filters', 'description': 'List gainers, losers, and most active stocks, and retrieve optional filters for screeners.'}
- {'name': 'Calendar and Events', 'description': 'Access an events calendar and count financial events within a specified time frame.'}
- {'name': 'Deprecated Tools', 'description': 'Includes older versions of tools for historical data, insider transactions, and various financial metrics.'}
Usage with Different Platforms
python
python
import requests
url = 'https://yahoo-finance-mcp-server/api/stock'
params = {'symbol': 'AAPL'}
response = requests.get(url, params=params)
print(response.json())
nodejs
javascript
const axios = require('axios');
axios.get('https://yahoo-finance-mcp-server/api/stock', {
params: {
symbol: 'AAPL'
}
})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.error(error);
});