get_stock_info
Retrieve company profiles and key financial metrics by providing a stock ticker, such as "AAPL", using the Yahoo Finance MCP Server.
Instructions
获取公司概况及关键财务指标。
参数说明: ticker: str 股票代码,例如 "AAPL"
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ticker | Yes |
Input Schema (JSON Schema)
{
"properties": {
"ticker": {
"title": "Ticker",
"type": "string"
}
},
"required": [
"ticker"
],
"title": "get_stock_infoArguments",
"type": "object"
}