latamfx-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@latamfx-mcpwhat's the blue dollar rate today?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
latamfx-mcp
An MCP server that exposes public LatAm FX data and an auditable reconciliation engine to AI agents (Claude Desktop, Claude Code, or any MCP client).
latamfx-mcp lets an LLM agent answer questions like "what's the blue dollar
today?", "convert 1,500 USD to ARS at the MEP rate", or "reconcile these two
ledgers and tell me what didn't match" — entirely from free, key-less public
APIs. No credentials, no client data.
It doubles as a reference implementation of a production-shaped MCP server: hexagonal architecture, typed contracts, retries with backoff, a TTL cache, contract tests against mocked HTTP, CI, Docker and a Cloud Run deployment module.
Tools
Tool | What it does |
| List supported sources (oficial, blue, MEP, CCL, mayorista, cripto, tarjeta). |
| Latest buy/sell quote for a source. |
| Historical buy/sell series (most recent N points). |
| min / max / mean / volatility of the mid price (computed with Polars). |
| Convert an amount between currencies using a source's quote (USD↔ARS). |
| Match two ledgers with a multi-rule engine; returns matches, misses and a match rate. |
Plus a resource: fx://sources (the source catalog as text).
The reconciliation engine
reconcile is a sanitized, generic version of intercompany / bank
reconciliation engines used in real fintech work. Rules run in priority order
and each right-side entry is consumed at most once, so the output is a valid
one-to-one assignment where every match is traceable to the rule that produced
it:
exact_reference— same non-empty external reference (score 1.0).amount_date— equal amount within a day-tolerance window (score decays with the gap).fuzzy_description— equal amount + similar free-text description above a threshold.
Related MCP server: dolar-mcp
Architecture
Hexagonal (ports & adapters): the domain and application layers know nothing about HTTP or MCP, so the engine is pure and the data source is swappable.
flowchart TD
Agent[AI agent / MCP client] -->|tools, resources| Server[server.py · FastMCP]
Server --> App[application · FxService, ReconciliationService]
App --> Domain[domain · models + reconciliation engine]
App -->|FxProvider port| Port{{ports}}
Port -.implemented by.-> Adapter[infrastructure · DolarApiProvider]
Adapter -->|httpx + retries + TTL cache| Public[(dolarapi.com / argentinadatos.com)]src/latamfx_mcp/
├── domain/ # pure models + reconciliation engine (no I/O)
├── ports/ # FxProvider Protocol (dependency inversion)
├── application/ # use cases: FX + reconciliation
├── infrastructure/ # httpx adapter, retry policy, TTL cache
├── config.py # env-driven settings
└── server.py # FastMCP wiring (tools + resource)See docs/architecture.md and the
ADRs for the design decisions.
Quickstart
Requires uv.
git clone https://github.com/floreskemec/latamfx-mcp.git
cd latamfx-mcp
uv sync
uv run latamfx-mcp # starts the MCP server over stdioUse it from Claude Code
claude mcp add latamfx -- uv --directory /absolute/path/to/latamfx-mcp run latamfx-mcpUse it from Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"latamfx": {
"command": "uv",
"args": ["--directory", "/absolute/path/to/latamfx-mcp", "run", "latamfx-mcp"]
}
}
}Then ask Claude: "Using latamfx, convert 1500 USD to ARS at the blue rate and show me the last 7 days of the blue dollar."
Development
uv sync
uv run pytest # tests + coverage
uv run ruff check . # lint
uv run ruff format . # format
uv run mypy # static typesConfiguration is read from environment variables (all optional):
Variable | Default | Purpose |
|
| HTTP timeout (seconds). |
|
| Max attempts on transient failures. |
|
| Quote/series cache TTL (seconds). |
Deployment
A multi-stage Dockerfile builds a slim image, and
deploy/terraform contains a minimal OpenTofu/Terraform
module to run it on Google Cloud Run. See the
deploy README.
Data sources
dolarapi.com — latest quotes.
ArgentinaDatos — historical series.
Both are free, community-maintained public APIs. This project is not affiliated with them; please review their terms before heavy use.
License
MIT © Gonzalo Flores Kemec
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/floreskemec/latamfx-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server