get_last_forex_quote
Retrieve the most recent forex exchange rate between two currencies using the Polygon-io MCP Server. Input specific currency pairs to obtain accurate and timely quote data.
Instructions
Get the most recent forex quote.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from_ | Yes | ||
params | No | ||
to | Yes |
Input Schema (JSON Schema)
{
"properties": {
"from_": {
"title": "From",
"type": "string"
},
"params": {
"anyOf": [
{
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Params"
},
"to": {
"title": "To",
"type": "string"
}
},
"required": [
"from_",
"to"
],
"title": "get_last_forex_quoteArguments",
"type": "object"
}