3er banco privado más grande de BR. Completa el trío de los 3 mayores bancos privados de BR (Itaú + Bradesco + Santander). OAuth2 + mTLS. Cobrança con scope de workspace vía X-Application-Key. Alpha en npm — auth verificada por SDKs de la comunidad, paths de Pix estándar BACEN con alta confianza.
Santander Brasil le da a tu agente 23 tools que llama directo — elegí las que necesite, en Claude, Cursor o cualquier cliente MCP.
get_oauth_token — Mint or return a cached OAuth2 client_credentials bearer token for the Santander Developer Portal. Exposed so agents can inspect token freshness; normal tool calls obtain tokens implicitly.send_pix — Initiate an outbound Pix payment from the merchant's Santander account. Amount in BRL major units (e.g. '10.50').create_pix_qr — Create a dynamic Pix charge with QR code (cob). Returns the txid, copy-paste EMV payload, and location URL.// 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("get_oauth_token", { /* ... */ });$ npm install @codespar/mcp-santander@alphaAgregá esta entrada a tu claude_desktop_config.json (o a la config de cualquier cliente compatible con MCP).
{
"mcpServers": {
"santander": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-santander@alpha"
],
"env": {
"SANTANDER_CLIENT_ID": "<your_santander_client_id>",
"SANTANDER_CLIENT_SECRET": "<your_santander_client_secret>",
"SANTANDER_CERT_PATH": "<your_santander_cert_path>",
"SANTANDER_KEY_PATH": "<your_santander_key_path>"
}
}
}
}Después de reiniciar, tu agente puede llamar cualquiera de las 23 herramientas de abajo — probá get_oauth_token primero.
Necesarias para autenticar el server. Almacenadas cifradas al usar el hosting gestionado de CodeSpar.
SANTANDER_CLIENT_IDSantander OAuth client_id issued via the Developer Portal (developer.santander.com.br) after contract onboarding.
SANTANDER_CLIENT_SECRETSantander OAuth client_secret.
SANTANDER_CERT_PATHAbsolute path to the mTLS client certificate (.crt or .pem). BACEN mandates mTLS for Pix v2, and Santander's trust-open gateway enforces it across product families.
SANTANDER_KEY_PATHAbsolute path to the mTLS private key (.key or .pem).
SANTANDER_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.
get_oauth_tokensend_pixcreate_pix_qrget_pixresolve_dict_keyrefund_pixcreate_boletoget_boletoMCP es un protocolo — cualquier framework que lo hable puede montar este server.