BaaS de BR — el principal competidor de Matera, sostiene buena parte del stack fintech brasileño. Diferencial vs Matera: emisión de tarjeta sobre Pix + cuentas. Alpha en npm — developers.dock.tech está cerrado en ReadMe, paths siguen las convenciones estándar de BaaS BR.
Dock le da a tu agente 20 tools que llama directo — elegí las que necesite, en Claude, Cursor o cualquier cliente MCP.
create_account — Create a digital account for an end user (CPF holder) on Dock. Returns the account id, agency, and account number. Account holds funds that can be moved via Pix or spent via issued cards.get_account — Retrieve a Dock account by id. Returns balance, status, holder info, and account coordinates (agency / account number).send_pix — Initiate an outbound Pix transfer from a Dock account to any Pix key in BR. Returns endToEndId once the BCB SPI confirms.// 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_account", { /* ... */ });$ npm install @codespar/mcp-dock@alphaAgregá esta entrada a tu claude_desktop_config.json (o a la config de cualquier cliente compatible con MCP).
{
"mcpServers": {
"dock": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-dock@alpha"
],
"env": {
"DOCK_CLIENT_ID": "<your_dock_client_id>",
"DOCK_CLIENT_SECRET": "<your_dock_client_secret>"
}
}
}
}Después de reiniciar, tu agente puede llamar cualquiera de las 20 herramientas de abajo — probá create_account primero.
Necesarias para autenticar el server. Almacenadas cifradas al usar el hosting gestionado de CodeSpar.
DOCK_CLIENT_IDOAuth2 client_id issued by Dock
DOCK_CLIENT_SECRETOAuth2 client_secret issued by Dock
DOCK_ENVEnvironment: sandbox or production. Defaults to sandbox.
Cada herramienta es independiente — tu agente carga solo lo que necesita para reducir contexto y tiempo de respuesta.
create_accountget_accountsend_pixget_pixcreate_pix_qr_staticcreate_pix_qr_dynamicrefund_pixresolve_dict_keyMCP es un protocolo — cualquier framework que lo hable puede montar este server.