Infraestructura de core-banking brasileña (BaaS). Procesa cerca del 10% del Pix de Brasil según case studies por proveedor. No es PSP — son los rieles por debajo de las fintechs. Para empresas que construyen sobre Pix en vez de aceptarlo como merchant. Release alpha en npm — paths de endpoint pendientes de verificación en la doc.
Matera le da a tu agente 22 tools que llama directo — elegí las que necesite, en Claude, Cursor o cualquier cliente MCP.
create_pix_charge_static — Create a static Pix charge (reusable QR code tied to a merchant Pix key). Returns EMV copy-paste payload and QR code image. Use for points-of-sale or donations where the same QR is shown to many payers.create_pix_charge_dynamic — Create a dynamic Pix charge (single-use QR with expiration). Returns txid, EMV copy-paste, and QR image. Preferred for e-commerce checkouts and invoices.get_pix_charge — Retrieve a Pix charge (static or dynamic) by txid.// Your agent calls a tool directly — no glue code.
// CodeSpar's managed tier handles OAuth2, token rotation and rate limits.
const result = await session.call("create_pix_charge_static", { /* ... */ });$ npm install @codespar/mcp-matera@alphaAgregá esta entrada a tu claude_desktop_config.json (o a la config de cualquier cliente compatible con MCP).
{
"mcpServers": {
"matera": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-matera@alpha"
],
"env": {
"MATERA_CLIENT_ID": "<your_matera_client_id>",
"MATERA_CLIENT_SECRET": "<your_matera_client_secret>"
}
}
}
}Después de reiniciar, tu agente puede llamar cualquiera de las 22 herramientas de abajo — probá create_pix_charge_static primero.
Necesarias para autenticar el server. Almacenadas cifradas al usar el hosting gestionado de CodeSpar.
MATERA_CLIENT_IDOAuth2 client_id issued by Matera
MATERA_CLIENT_SECRETOAuth2 client_secret issued by Matera
MATERA_BASE_URLAPI base URL. Defaults to https://api.matera.com (production)
Cada herramienta es independiente — tu agente carga solo lo que necesita para reducir contexto y tiempo de respuesta.
create_pix_charge_staticcreate_pix_charge_dynamicget_pix_chargelist_pix_chargesupdate_pix_chargecreate_pix_charge_dueget_pix_charge_duecreate_pix_paymentMCP es un protocolo — cualquier framework que lo hable puede montar este server.