Skip to main content
Glama

MCP SAT 69 / 69-B · WATR

MCP (Model Context Protocol) server in Python / FastMCP for querying the SAT's public lists:

  • Article 69-B of the CFF (EFOS) — simulated operations: Presumed, Rebutted, Definitive, Favorable Ruling.

  • Article 69 of the CFF — final tax status: final, enforceable, not located, cancelled, forgiven.

Same architecture as the SSC-CDMX mobilizations MCP: FastMCP with stdio + Streamable HTTP transport, OAuth 2.1 (WorkOS AuthKit) with fallback to static bearer, persistence in Turso (libSQL), optional download proxy, and deployment on Render with external cron (GitHub Actions). No OCR: the SAT CSVs already come structured.

Tools

Tool

What it does

verificar_rfc

Verifies an RFC → risk verdict (CRITICOLIMPIO).

verificar_lote

Validates up to 500 RFCs; returns only findings by severity.

buscar_nombre

Search by name/legal name (FTS5, accent-insensitive).

estado_datos

Validity declared by the SAT, counts, and last import.

actualizar_datos

Downloads + syncs the listings (idempotent by hash).

Risk: CRITICO (definitive EFOS) · ALTO (alleged EFOS) · MEDIO (69 final/enforceable/not located) · BAJO (rebutted/favorable ruling) · INFORMATIVO (69 cancelled/forgiven) · LIMPIO.

The results reflect the latest import of the SAT's public files. They do not constitute tax or legal advice.

Related MCP server: rues

Architecture

CSV del SAT (Latin-1)                     ┌────────── FastMCP ──────────┐
   │  fetcher (httpx + proxy opcional)    │ verificar_rfc / _lote        │
   ▼                                      │ buscar_nombre / estado_datos │
 pipeline (parse 69 / 69b)  ──►  SQLite ──┤ actualizar_datos             │
   │   (FTS5 unicode61, triggers)  ▲  │   └──────────┬──────────────────┘
   ▼                               │  │   stdio (server.py) + HTTP (web.py)
 Turso (libSQL, durable) ◄── push  │  └► pull al arranque      │
                                   └─────────────────── /health /refresh /reload
  • server.py — FastMCP (stdio) + tools + AuthKit.

  • web.py — Starlette/uvicorn (HTTP): /health (open), /refresh and /reload (M2M bearer), /mcp (OAuth or bearer).

  • pipeline.py — download → SHA-256 (skips if unchanged) → Latin-1 parse → SQLite replacement → push to Turso.

  • database.py — SQLite + FTS5 with triggers; RFC via B-tree index (hot path).

  • turso.py — durable Turso ↔ local sync.

  • risk.py — RFC normalization + verdict tree (69-B takes precedence over 69).

Local installation

cd sat69-mcp
python -m venv .venv && source .venv/bin/activate
pip install -e ".[dev]"

# Primera ingesta (descarga ~22 MB; el 69 son ~½ millón de filas)
python -c "from sat69 import database as db, config; db.init_db(config.settings.db_path)"
python -c "from sat69.pipeline import process_import; print(process_import())"

# Probar
pytest -q

Connect in Claude Desktop / Cowork (stdio)

{
  "mcpServers": {
    "sat69": { "command": "sat69-mcp" }
  }
}

(or "command": "python", "args": ["-m", "sat69"] with the active venv.)

Deployment on Render

render.yaml provisions the web service with native Python runtime (no Docker):

  1. Push the repo to GitHub and create a Blueprint in Render pointing to render.yaml.

  2. Variables (marked sync:false): MCP_API_KEY (bearer), optional AUTHKIT_DOMAIN+BASE_URL (OAuth), TURSO_DATABASE_URL+TURSO_AUTH_TOKEN.

  3. MCP endpoint: POST https://<servicio>.onrender.com/mcp.

Auth (two modes, same as mobilizations)

  • Static bearer (MCP_API_KEY): simple, protects /mcp, /refresh, /reload.

  • OAuth 2.1 (WorkOS AuthKit): set AUTHKIT_DOMAIN + BASE_URL and /mcp switches to OAuth with Dynamic Client Registration; the bearer still protects the M2M endpoints.

Automatic refresh

.github/workflows/refresh.yml performs a daily POST /refresh (11:30 UTC ≈ 05:30 CDMX). Repo secrets: RENDER_BASE_URL, MCP_API_KEY. Manual: workflow_dispatch (with force).

Persistence (Turso)

Local SQLite (ephemeral on Render, /tmp) serves the queries; Turso is the durable store that survives redeploys. On startup a pull from Turso is performed; after each actualizar_datos//refresh a push is performed. Without TURSO_*, it runs in pure local mode.

Download proxy (optional)

FETCH_PROXY or DATAIMPULSE_* route only the CSV downloads. In testing, the SAT did not block datacenter IPs (direct 200 downloads), so it's usually not needed; it's kept for parity and resilience.

Data sources (SAT · Open Data)

  • 69-B: Listado_Completo_69-B.csv (~14 k records, 20 columns, header on line 3).

  • 69: Firmes.csv, Cancelados.csv, NoLocalizados.csv, Exigibles.csv, Sentencias.csv, Condonados.csv (~½ million records, 6 columns). URLs in config.py.

Available Tools

6 tools
actualizar_datosBInspect

Descarga y sincroniza los listados del SAT (idempotente por hash).

ParametersJSON Schema
NameRequiredDescriptionDefault
datasetNo"all" (default), "69", "69b" o "69bbis".all
force_refreshNoReprocesa aunque el archivo no haya cambiado.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

B3.3/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No hay anotaciones, por lo que la descripción asume la carga de transparencia. Aporta un rasgo relevante: la idempotencia por hash, que sugiere que es seguro reintentar. Sin embargo, no explica efectos colaterales de la sincronización, dependencia de red ni qué implica exactamente force_refresh sobre los datos locales.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Una sola oración con información esencial: verbo, objeto y propiedad clave (idempotencia). Es directa, sin relleno y con el detalle más relevante entre paréntesis.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Con un output-schema presente y parámetros bien cubiertos, la descripción es suficiente para ejecutar la llamada, pero no para entender cuándo conviene usarla respecto a sus hermanas ni qué implica 'sincronizar' a nivel de datos. Un agente podría invocarla sin saber que debe comprobar antes estado_datos o que puede forzar el refresco.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

La cobertura del esquema es del 100%, así que los parámetros ya están documentados en el input-schema. La descripción no añade semántica adicional a dataset ni a force_refresh; la referencia al hash se relaciona vagamente con force_refresh pero no explica su uso.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

Describe una acción específica ('Descarga y sincroniza') sobre un recurso concreto ('los listados del SAT') y añade un matiz ('idempotente por hash') que delimita su comportamiento. No nombra ni contrasta explícitamente con las herramientas hermanas, pero su alcance queda claro frente a estado_datos o verificar_rfc.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No se indica cuándo invocar esta herramienta frente a las alternativas, por ejemplo comprobar antes estado_datos o usar verificar_rfc según el caso. Tampoco hay prerequisitos, exclusiones ni contexto de uso; solo se infiere que sirve para actualizar los datos.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

buscar_nombreAInspect

Busca contribuyentes por nombre / razón social parcial (FTS5, sin acentos).

ParametersJSON Schema
NameRequiredDescriptionDefault
textoYesFragmento del nombre (mínimo 3 caracteres).
limiteNoMáximo de resultados por lista (1–100, default 25).
datasetNo"69", "69b", "69bbis" o "ambos" (default).ambos

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.7/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full behavioral burden. It usefully discloses accent-insensitivity ('sin acentos') and the FTS5 full-text search mechanism, which tells an agent that 'garcia' will match 'García'. However, it does not explicitly confirm the read-only nature of the operation, though 'busca' strongly implies it, nor does it mention auth, rate limits, or dataset freshness.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single eight-word sentence that front-loads the verb and resource, then the search method, then the technical detail (FTS5, sin acentos). Zero waste, no repetition of schema content, and every element earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is a simple search with full schema coverage and an output schema, so return values are already documented. The description covers the search method and accent behavior adequately. However, with zero annotations, it lacks explicit confirmation of read-only behavior, any note on rate limits or data freshness, and any reference to the dataset parameter semantics beyond the schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, with all three parameters (texto, limite, dataset) fully documented in the schema including defaults and constraints. The description adds marginal value by disclosing accent-insensitivity relevant to the texto parameter, but the schema already does the heavy lifting, so the baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Busca' = searches) with a specific resource ('contribuyentes' = taxpayers) and a precise method ('por nombre / razón social parcial' = by partial name/business name). It clearly differentiates from the closest sibling verificar_rfc, which is RFC-based lookup, since this tool searches by name fragment rather than by tax ID.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The 'por nombre / razón social parcial' phrasing implicitly signals that this tool is for name-fragment lookups, and the sibling names (verificar_rfc, verificar_lote) suggest the alternatives. However, the description never explicitly states when to use it versus those alternatives, so an agent must infer the decision boundary rather than being told it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

estado_datosAInspect

Estado del dataset: vigencia declarada por el SAT, conteos y última importación.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.9/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full transparency burden. It frames the tool as a status query and lists exactly what it reports, which strongly implies a safe, read-only operation. It does not mention refresh/network behavior or failure modes, but no destructive or surprising behavior is indicated.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single compact sentence that front-loads the core concept ('Estado del dataset') and uses a colon to list three concrete status dimensions. Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no required parameters and an output schema available, the description sufficiently covers tool selection and expected content. It enumerates the status dimensions and does not need to describe return structure because the output schema already exists.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters and the schema fully reflects that, so there is no parameter ambiguity to resolve. The description adds no parameter-level detail, but none is needed.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description identifies the resource ('dataset') and the specific status facets it exposes: SAT-declared validity, counts, and last import. It lacks an explicit verb but is unambiguous and clearly distinguishable from siblings like actualizar_datos and verificar_rfc.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The purpose is clear enough to imply 'use this when you need dataset status', and the listed facets suggest it complements actualizar_datos and verificar_rfc. However, the description never explicitly states when to use it versus those alternative tools or when not to use it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

resumen_carteraAInspect

Resumen ejecutivo en lenguaje natural de una cartera de RFCs.

El riesgo de cada RFC lo calcula el motor de reglas (DETERMINISTA); la IA sólo redacta el brief a partir de esos veredictos ya calculados — nunca decide el riesgo. Proveedor de IA conmutable por env var (LLM_PROVIDER).

ParametersJSON Schema
NameRequiredDescriptionDefault
rfcsYesLista de RFCs (máximo 500).

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.8/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full behavioral disclosure burden. It credibly explains that risk is computed deterministically by a rules engine, the AI only drafts the brief and never decides risk, and the AI provider is switchable via LLM_PROVIDER. This meaningfully prevents an agent from assuming the tool performs risk assessment itself.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and well-structured: the first sentence states the core purpose, and the second paragraph provides crucial behavioral context about determinism and the AI provider. Every sentence adds value, and the most important information is front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the presence of an output schema, the simple input schema with one documented parameter, and the important behavioral clarifications, the description is largely sufficient for an agent to invoke the tool correctly. It could mention data freshness or integration with estado_datos, but this is not essential for a correct call.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% for the single 'rfcs' parameter, including the maximum of 500 items. The description adds no parameter-level detail beyond the schema, but with full schema coverage, the baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the tool's output as an executive summary in natural language for a portfolio of RFCs, which is a specific resource and deliverable. It lacks an explicit imperative verb like 'genera' or 'resume', and does not directly name sibling tools for differentiation, though the purpose is distinct from the listed siblings.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The usage context is implied by the first sentence: this tool is for summarizing a portfolio of RFCs. However, it does not explicitly state when to use this tool versus alternatives such as verificar_rfc, verificar_lote, or buscar_nombre, nor does it give exclusions or prerequisites.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

verificar_loteBInspect

Verifica una lista de RFCs (p. ej. proveedores). Devuelve sólo hallazgos.

ParametersJSON Schema
NameRequiredDescriptionDefault
rfcsYesLista de RFCs (máximo 500).

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

B3.3/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It adds one useful behavioral fact: only findings are returned, implying no full-record dump. However, it does not mention read-only status, error handling, invalid RFC behavior, or side effects.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two short sentences with no filler. The primary action is front-loaded, and the second sentence adds meaningful return behavior without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a one-parameter tool with an output schema, the core invocation is nearly self-contained. However, with no annotations and no mention of when to prefer verificar_lote over verificar_rfc, the description is not fully complete for correct tool selection in all contexts.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already covers 100% of the single parameter, including its type and maximum limit of 500. The description adds only the 'proveedores' example, which gives context but no substantial new parameter semantics, so the baseline of 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a clear verb and resource: 'Verifica una lista de RFCs', and adds a distinctive return characteristic: 'Devuelve sólo hallazgos'. It is distinguishable from the sibling verificar_rfc by the batch aspect ('lista'), although it does not explicitly name that differentiation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no explicit guidance about when to use this tool versus verificar_rfc or other siblings. The only contextual hint is 'lista' and the example 'proveedores', which implies batch use but leaves the routing decision to inference.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

verificar_rfcAInspect

Verifica un RFC contra las listas del SAT (Art. 69, 69-B y 69-B Bis).

ParametersJSON Schema
NameRequiredDescriptionDefault
rfcYesRFC a consultar (física o moral). Se normaliza automáticamente.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. The verb 'Verifica' clearly indicates a read-style checking operation rather than a mutation, and the specific article references add useful context about the data sources. It could more explicitly state that no changes are made or that external SAT lists are consulted, but the core behavior is adequately transparent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single, tightly worded sentence that front-loads the action and resource. The parenthetical legal reference is informative rather than filler, and there is no redundant or vague language.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple one-parameter tool with an output schema, the description is largely complete: it states the object, the source, and the specific legal lists. The main gap is the absence of explicit routing guidance toward or away from verificar_lote, but the singular language and low complexity keep this from being a significant deficiency.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% and the single 'rfc' parameter is already described with automatic normalization. The tool description only repeats that it checks an RFC, adding no new meaning beyond the schema, so the baseline score of 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Verifica') and clearly identifies the resource (an RFC) and the target (SAT lists under Articles 69, 69-B, and 69-B Bis). The singular 'un RFC' distinguishes it from the sibling verificar_lote, making the tool's purpose unmistakable.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies the tool is used to verify a single RFC against SAT lists, but it does not explicitly state when to prefer this over siblings such as verificar_lote or when not to use it. There is no mention of alternatives or exclusionary conditions, leaving some inference to the agent.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 6 tool updatesv1.0.0
    • First observedactualizar_datos
    • First observedbuscar_nombre
    • First observedestado_datos
    • First observedresumen_cartera
    • First observedverificar_lote
    • First observedverificar_rfc

TDQS

A3.8/5.0
Disambiguation5/5

Each tool has a clearly distinct concern: data status/update, single/batch verification, portfolio summary, and name search. The closest pair, verificar_rfc and verificar_lote, is disambiguated by singular vs batch operation.

Naming Consistency4/5

Most tools follow a clear verb_noun pattern: actualizar_datos, verificar_rfc, verificar_lote, buscar_nombre. Two names are noun phrases, estado_datos and resumen_cartera, which is a minor deviation from the otherwise consistent style.

Tool Count5/5

Six tools are well-scoped for this SAT list verification server. Each tool adds a distinct capability, covering data ingestion, verification, search, and summary without redundancy or bloat.

Completeness4/5

The toolset covers the core workflow: update and inspect dataset state, verify single or batch RFCs, search by name, and generate portfolio summaries. A dedicated detailed taxpayer-profile tool could be a minor addition, but the main use cases are well supported.

Maintenance

ActivityActive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • F
    license
    A
    quality
    D
    maintenance
    Latin American business compliance suite — 28 tools for tax ID validation (CPF, CNPJ, RFC, RUT, CUIT, NIT), banking (PIX, CLABE, CBU), VAT rules, e-invoicing (NF-e, CFDI, DTE), holidays, and labor calendar across Brazil, Mexico, Chile, Argentina, and Colombia.
    28
    -
  • F
    license
    Not graded
    quality
    D
    maintenance
    Enables querying the Colombian Business Registry (RUES) for company searches by name, location grouping, and detailed company information.
    -
  • F
    license
    Not graded
    quality
    C
    maintenance
    Provides business intelligence, compliance tools, and economic data for Latin America, including Brazilian company lookups, tax ID validation for multiple countries, and economic indicators from official government sources.
    -
  • F
    license
    Not graded
    quality
    C
    maintenance
    Enables consultation of Argentine credit situations (Central de Deudores) via BCRA API, providing tools for current status, historical trends, rejected checks, and consolidated reports.
    -

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/edbror/sat69-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server