get_ticker_info
Retrieve detailed stock information for a specific symbol using the Yahoo Finance API. Integrate financial data into MCP workflows with mcp-yeoman for seamless automation.
Instructions
Retrieve information about a specific stock symbol using Yahoo Finance API.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
symbol | Yes | The stock symbol |
Input Schema (JSON Schema)
{
"properties": {
"symbol": {
"description": "The stock symbol",
"title": "Symbol",
"type": "string"
}
},
"required": [
"symbol"
],
"title": "get_ticker_infoArguments",
"type": "object"
}