forex_exchangeRates
Retrieve real-time foreign exchange rates for specified currency pairs using the MCP Avantage server. Input source and target currency symbols to get accurate conversion data.
Instructions
Fetches the realtime exchange rate for a currency pair (e.g., EUR to USD).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from_currency | Yes | The currency symbol to convert from (e.g., "EUR"). | |
to_currency | Yes | The currency symbol to convert to (e.g., "USD"). |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"description": "Parameters for fetching Forex exchange rates.",
"properties": {
"from_currency": {
"description": "The currency symbol to convert from (e.g., \"EUR\").",
"type": "string"
},
"to_currency": {
"description": "The currency symbol to convert to (e.g., \"USD\").",
"type": "string"
}
},
"required": [
"from_currency",
"to_currency"
],
"type": "object"
}