Server data from the Official MCP Registry
Latin American data for AI agents: tax-ID validation, indicators, FX, company lookups, holidays
Latin American data for AI agents: tax-ID validation, indicators, FX, company lookups, holidays
A well-structured MCP server for Latin American data validation and APIs with clean code practices. The server properly handles external API calls with error handling, uses no hardcoded secrets, and avoids dangerous patterns like arbitrary code execution. Permissions align appropriately with its stated purpose (network access for APIs, environment variables for credentials). Minor findings are present but do not materially impact security posture. Supply chain analysis found 3 known vulnerabilities in dependencies (1 critical, 1 high severity). Package verification found 1 issue.
5 files analyzed Β· 8 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-svkbogislav-latam-data-mcp": {
"args": [
"latam-data-mcp"
],
"command": "uvx"
}
}
}From the project's GitHub README.
The Latin American data layer your AI agent is missing.
An MCP server that gives agents reliable access to LatAm data that is otherwise scattered, undocumented, or Spanish-only: tax-ID validation for 12 countries, live economic indicators, exchange rates (including Argentina's blue rate and Colombia's legally binding TRM), Brazilian company lookups, holidays, and business-day math.
| Tool | What it does |
|---|---|
validate_tax_id | Validates national tax IDs with real check-digit math for 15 countries: π¨π± RUT, π¦π· CUIT/CUIL, π²π½ RFC, π§π· CPF/CNPJ (incl. 2026 alphanumeric CNPJs), π¨π΄ NIT, π΅πͺ RUC, πΊπΎ RUT, πͺπ¨ cΓ©dula/RUC, π΅πΎ RUC, π»πͺ RIF, π¬πΉ NIT, π©π΄ RNC, π΅π¦ RUC+DV, π¨π· cΓ©dula, π§π΄ NIT. Returns canonical formatting and person/company/public-entity detection. |
validate_bank_account | Validates interbank account codes with check-digit math: π²π½ CLABE (18-digit), π¦π· CBU/CVU (22-digit, incl. Mercado Pago virtual accounts). Decodes bank, branch and account β verify a payout destination before sending money. |
validate_pix_key | Validates a π§π· PIX key (CPF, CNPJ, e-mail, +55 phone, or random UUID) and detects its type β CPF/CNPJ with full check-digit math. |
validate_phone_number | Validates & normalizes phone numbers for 15 countries β E.164, national format, mobile/landline detection. Handles Brazil's 9th digit, Mexico's 10-digit, Argentina's 9/15, Chile's 9-prefix. |
brazil_bank_lookup | Resolves a π§π· bank by COMPE code (name, ISPB). |
brazil_company_lookup | Full federal-registry data for any Brazilian company by CNPJ: legal name, status, size, main activity, capital, address, partners. |
costa_rica_company_lookup | π¨π· taxpayer by cΓ©dula: name, regime, activities, and compliance status (moroso/omiso) from Hacienda β for KYC/AML. |
| Tool | What it does |
|---|---|
chile_indicators | UF, UTM, USD, EUR and more, in CLP. |
argentina_exchange_rates | Official vs blue rate for USD/EUR. |
brazil_market_rates | SELIC, CDI, IPCA. |
colombia_official_trm | The legally binding USD/COP rate with validity dates. |
brazil_historical_series | Historical SELIC/CDI/IPCA/USD over a date range, with min/max/avg/change β for trend analysis and backtesting. |
colombia_trm_history | Historical USD/COP (TRM) over a date range. |
costa_rica_exchange_rate | π¨π· official USD/EUR colΓ³n rate. |
currency_convert | Convert any amount between two currencies at the live rate. |
latam_exchange_rates | All 18 LatAm currencies vs USD in one call. |
| Tool | What it does |
|---|---|
public_holidays | Official holidays for 20 LatAm countries, any year. |
next_holidays | Upcoming holidays from today. |
long_weekends | Long weekends with bridge-day analysis. |
business_days | Working-day count between dates, holiday-aware β for SLA, payroll, logistics, settlement math. |
No download or clone needed. Add this to your MCP client config β uvx
fetches and runs the server straight from this repo:
Claude Desktop / Cursor / Claude Code (mcpServers block):
{
"mcpServers": {
"latam-data": {
"command": "uvx",
"args": ["--from", "git+https://github.com/svkbogislav/latam-data-mcp", "latam-data-mcp"]
}
}
}
Or install it as a command:
uvx --from git+https://github.com/svkbogislav/latam-data-mcp latam-data-mcp
# or: pipx install git+https://github.com/svkbogislav/latam-data-mcp
Requires Python 3.10+. No API keys β every data source is free and public.
A always-on hosted instance is available at https://latam-data.fastmcp.app/mcp
(Streamable HTTP, authenticated). Use this if you'd rather not run anything
locally.
python3.11 -m venv .venv
.venv/bin/pip install -e ".[dev]"
.venv/bin/python server.py # stdio; set PORT=8000 for Streamable HTTP
.venv/bin/pytest # offline suite: validators + MCP protocol layer
.venv/bin/pytest -m live # integration tests against the real upstream APIs
Validators are verified against python-stdnum's reference algorithms and real IDs of public institutions (Banco do Brasil, SUNAT, DIAN, UTE, U. de Chile).
All free public APIs, no keys: gael.cloud (Chile), Bluelytics (Argentina), BrasilAPI (Brazil), datos.gov.co (Colombia), open.er-api.com (regional FX), Nager.Date (holidays). Tax-ID validation is pure local math β zero dependencies, zero latency, nothing to break.
Be the first to review this server!
by Modelcontextprotocol Β· Developer Tools
Web content fetching and conversion for efficient LLM usage
by Toleno Β· Developer Tools
Toleno Network MCP Server β Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace Β· Developer Tools
Create, build, and publish Python MCP servers to PyPI β conversationally.