get_ratings
Retrieve real-time or historical stock ratings using the Yahoo Finance MCP Server. Input a stock symbol to access snapshot or past rating data, with customizable limits for results.
Instructions
获取股票评级数据,可选择快照或历史记录。
参数说明: symbol: str 股票代码,例如 "AAPL" rating_type: str snapshot 或 historical,默认 snapshot limit: int 返回数量,默认 1
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
rating_type | No | snapshot | |
symbol | Yes |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 1,
"title": "Limit",
"type": "integer"
},
"rating_type": {
"default": "snapshot",
"title": "Rating Type",
"type": "string"
},
"symbol": {
"title": "Symbol",
"type": "string"
}
},
"required": [
"symbol"
],
"title": "get_ratingsArguments",
"type": "object"
}