yahoo-finance15
The Yahoo-Finance15 MCP Server provides tools for accessing financial data, ideal for developers building trading platforms or integrating financial information into applications.
The Yahoo-Finance15 MCP Server offers a variety of tools to access real-time and historical financial data. Key features include real-time market data, historical data, options data, insider trades, and the latest news. It is designed to support developers in building trading platforms, performing market analysis, or integrating financial information into applications. Users can obtain access, make requests using their preferred programming language, and handle responses in JSON format. The server provides comprehensive data for stocks, ETFs, mutual funds, and more, along with detailed options data and insights into insider trading activities. Additionally, it offers market and company news updates, financial calendar events, and technical indicators.
Features
- Real-Time Market Data: Access up-to-the-minute quotes for stocks, ETFs, mutual funds, and more.
- Historical Data: Retrieve comprehensive historical data for various asset classes.
- Options Data: Explore detailed options data for stocks.
- Insider Trades: Gain insights into insider trading activities.
- Latest News: Stay updated with the latest financial news across different sectors.
Usage with Different Platforms
python
python
import requests
url = 'https://yahoo-finance15-mcp-server/api/marketdata'
headers = {'Authorization': 'Bearer YOUR_ACCESS_TOKEN'}
response = requests.get(url, headers=headers)
data = response.json()
print(data)
javascript
javascript
const fetch = require('node-fetch');
const url = 'https://yahoo-finance15-mcp-server/api/marketdata';
const options = {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN'
}
};
fetch(url, options)
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));