Infraestrutura de core-banking brasileira (BaaS). Processa cerca de 10% do Pix do Brasil segundo cases por fornecedor. Não é PSP — são as trilhas por baixo das fintechs. Pra empresas que constroem em cima do Pix em vez de aceitá-lo como merchant. Release alpha no npm — paths de endpoint pendentes de verificação na doc.
O Matera dá ao seu agente 22 tools que ele chama direto — escolha as que precisar, no Claude, Cursor ou qualquer 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@alphaAdicione esta entrada ao seu claude_desktop_config.json (ou a config de qualquer cliente compatível com 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>"
}
}
}
}Depois de reiniciar, seu agente pode chamar qualquer uma das 22 ferramentas abaixo — teste create_pix_charge_static primeiro.
Necessárias pra autenticar o server. Armazenadas criptografadas ao usar a hospedagem gerenciada da 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 ferramenta é independente — seu agente carrega só o que precisa pra reduzir contexto e tempo de resposta.
create_pix_charge_staticcreate_pix_charge_dynamicget_pix_chargelist_pix_chargesupdate_pix_chargecreate_pix_charge_dueget_pix_charge_duecreate_pix_paymentMCP é um protocolo — qualquer framework que o fale pode montar este server.