get_ticker_details
Retrieve comprehensive details for a specific ticker, including historical data and relevant parameters, using the 'Polygon-io MCP Server' for accurate financial insights.
Instructions
Get detailed information about a specific ticker.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | No | ||
params | No | ||
ticker | Yes |
Input Schema (JSON Schema)
{
"properties": {
"date": {
"anyOf": [
{
"type": "string"
},
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Date"
},
"params": {
"anyOf": [
{
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Params"
},
"ticker": {
"title": "Ticker",
"type": "string"
}
},
"required": [
"ticker"
],
"title": "get_ticker_detailsArguments",
"type": "object"
}