Adquirente brasileña de Santander — #3 en BR y #1 en ecommerce BR. Crédito, débito, Pix, boleto + onboarding de seller y split de marketplace. Cierra el cuadrante de las cuatro grandes adquirentes de BR.
Getnet le da a tu agente 20 tools que llama directo — elegí las que necesite, en Claude, Cursor o cualquier cliente MCP.
authorize_credit — Authorize a credit-card payment on Getnet. Set delayed=false to authorize+capture atomically; delayed=true to authorize only (use capture_credit later).capture_credit — Capture a previously authorized credit payment (when delayed=true was used).cancel_credit — Cancel an authorized-but-uncaptured credit payment.// 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("authorize_credit", { /* ... */ });$ npm install @codespar/mcp-getnetAgregá esta entrada a tu claude_desktop_config.json (o a la config de cualquier cliente compatible con MCP).
{
"mcpServers": {
"getnet": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-getnet"
],
"env": {
"GETNET_CLIENT_ID": "<your_getnet_client_id>",
"GETNET_CLIENT_SECRET": "<your_getnet_client_secret>",
"GETNET_SELLER_ID": "<your_getnet_seller_id>"
}
}
}
}Después de reiniciar, tu agente puede llamar cualquiera de las 20 herramientas de abajo — probá authorize_credit primero.
Necesarias para autenticar el server. Almacenadas cifradas al usar el hosting gestionado de CodeSpar.
GETNET_CLIENT_IDGetnet OAuth client_id
GETNET_CLIENT_SECRETGetnet OAuth client_secret
GETNET_SELLER_IDGetnet seller_id issued with your merchant contract
GETNET_BASE_URLGetnet API base URL. Defaults to production (https://api.getnet.com.br). Use https://api-homologacao.getnet.com.br for sandbox.
Cada herramienta es independiente — tu agente carga solo lo que necesita para reducir contexto y tiempo de respuesta.
authorize_creditcapture_creditcancel_creditrefund_creditcreate_pixcreate_boletoget_paymenttokenize_cardMCP es un protocolo — cualquier framework que lo hable puede montar este server.