Santander-owned Brazilian acquirer — #3 BR and #1 BR ecommerce. Credit, debit, Pix, boleto + marketplace seller onboarding and split. Closes the big-four BR acquirer quadrant.
Getnet gives your agent 20 tools it calls directly — pick the ones it needs, in Claude, Cursor, or any MCP client.
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-getnetAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"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>"
}
}
}
}After restart, your agent can call any of the 20 tools below — try authorize_credit first.
Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
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.
Each tool is independent — your agent loads only what it needs to reduce context and response time.
authorize_creditcapture_creditcancel_creditrefund_creditcreate_pixcreate_boletoget_paymenttokenize_cardMCP is a protocol — any framework that speaks it can mount this server.