get_real_time_currency_conversion
Convert currencies in real-time using Polygon-io MCP Server. Input source and target currencies with optional amount and precision for accurate exchange rate results.
Instructions
Get real-time currency conversion.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | No | ||
from_ | Yes | ||
params | No | ||
precision | No | ||
to | Yes |
Input Schema (JSON Schema)
{
"properties": {
"amount": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
],
"default": null,
"title": "Amount"
},
"from_": {
"title": "From",
"type": "string"
},
"params": {
"anyOf": [
{
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Params"
},
"precision": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Precision"
},
"to": {
"title": "To",
"type": "string"
}
},
"required": [
"from_",
"to"
],
"title": "get_real_time_currency_conversionArguments",
"type": "object"
}