list_quotes
Retrieve stock quotes by ticker symbol with optional timestamp filters and sorting parameters using the Polygon-io MCP Server.
Instructions
Get quotes for a ticker symbol.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
order | No | ||
params | No | ||
sort | No | ||
ticker | Yes | ||
timestamp | No | ||
timestamp_gt | No | ||
timestamp_gte | No | ||
timestamp_lt | No | ||
timestamp_lte | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Limit"
},
"order": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Order"
},
"params": {
"anyOf": [
{
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Params"
},
"sort": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Sort"
},
"ticker": {
"title": "Ticker",
"type": "string"
},
"timestamp": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
},
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Timestamp"
},
"timestamp_gt": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
},
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Timestamp Gt"
},
"timestamp_gte": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
},
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Timestamp Gte"
},
"timestamp_lt": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
},
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Timestamp Lt"
},
"timestamp_lte": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
},
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Timestamp Lte"
}
},
"required": [
"ticker"
],
"title": "list_quotesArguments",
"type": "object"
}