get_last_trade
Retrieve the latest trade data for a specified ticker symbol using the Polygon.io MCP Server for accurate and up-to-date financial insights.
Instructions
Get the most recent trade 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_tradeArguments",
"type": "object"
}