latamfx-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| LATAMFX_CACHE_TTL | No | Quote/series cache TTL (seconds). | 60.0 |
| LATAMFX_HTTP_RETRIES | No | Max attempts on transient failures. | 3 |
| LATAMFX_HTTP_TIMEOUT | No | HTTP timeout (seconds). | 10.0 |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_fx_sourcesA | List the supported FX sources (Argentine dollar variants). |
| get_fx_quoteA | Get the latest buy/sell quote for an FX source (e.g. 'blue', 'oficial'). |
| get_fx_timeseriesB | Get the historical buy/sell series for a source (most recent |
| get_fx_statsB | Summary statistics (min/max/mean/volatility) of a source's mid price. |
| convertB | Convert an amount between currencies using a source's quote (e.g. USD<->ARS). |
| reconcileA | Reconcile two ledgers with a multi-rule engine (exact ref, amount+date, fuzzy). Returns matched pairs (with the rule and a confidence score), unmatched ids on each side, and the overall match rate. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| sources_resource | The FX source catalog as a human-readable list. |
TDQS
Scored across 6 tools
Most tools have distinct purposes (conversion, quotes, stats, timeseries, source listing). However, 'reconcile' introduces a separate domain (ledger reconciliation) which could be confusing but does not overlap with FX tools.
Naming conventions are mixed: 'convert' and 'reconcile' are bare verbs, while others use 'get_fx_*' or 'list_fx_*' pattern. This inconsistency could be confusing.
6 tools is a reasonable number for an FX-focused server plus a reconciliation tool. It feels slightly heavy but still manageable.
Core FX operations (list sources, get quote, timeseries, stats, convert) are covered. The inclusion of reconciliation is a bonus but not part of the expected surface, so minor gap.