get_last_quote
Retrieve the most recent quote for a specified ticker symbol using the Polygon-io MCP Server.
Instructions
Get the most recent quote for a ticker symbol.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | No | ||
ticker | Yes |
Input Schema (JSON Schema)
{
"properties": {
"params": {
"anyOf": [
{
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Params"
},
"ticker": {
"title": "Ticker",
"type": "string"
}
},
"required": [
"ticker"
],
"title": "get_last_quoteArguments",
"type": "object"
}