latamfx-mcp
Enables AI agents to query public Latin American FX rates and perform auditable ledger reconciliation using a multi-rule matching engine.
README
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_fx_sources |
List supported sources (oficial, blue, MEP, CCL, mayorista, cripto, tarjeta). |
get_fx_quote |
Latest buy/sell quote for a source. |
get_fx_timeseries |
Historical buy/sell series (most recent N points). |
get_fx_stats |
min / max / mean / volatility of the mid price (computed with Polars). |
convert |
Convert an amount between currencies using a source's quote (USD↔ARS). |
reconcile |
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.
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 stdio
Use it from Claude Code
claude mcp add latamfx -- uv --directory /absolute/path/to/latamfx-mcp run latamfx-mcp
Use 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 types
Configuration is read from environment variables (all optional):
| Variable | Default | Purpose |
|---|---|---|
LATAMFX_HTTP_TIMEOUT |
10.0 |
HTTP timeout (seconds). |
LATAMFX_HTTP_RETRIES |
3 |
Max attempts on transient failures. |
LATAMFX_CACHE_TTL |
60.0 |
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
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。