get_dividends
Retrieve dividend data for a specific stock symbol using the MCP Yahoo Finance server. Input the stock symbol to access accurate dividend payout information for analysis or decision-making.
Instructions
Get dividends for a given stock symbol.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
symbol | Yes | Stock symbol in Yahoo Finance format. |
Input Schema (JSON Schema)
{
"properties": {
"symbol": {
"description": "Stock symbol in Yahoo Finance format.",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}