brasil_banks

Pack: latam-validate · Endpoint: https://gateway.pipeworx.io/latam-validate/mcp

List Brazilian banks (COMPE code, ISPB, and name) from the central-bank registry, optionally filtered by name or code. Use to resolve a bank code from a boleto or PIX/TED transfer to the institution name, e.g. code 1 → Banco do Brasil, 260 → Nubank.

Parameters

NameTypeRequiredDescription
searchstringnoFilter by bank name substring (case-insensitive), e.g. “nubank” or “itau”.
codenumbernoExact COMPE bank code to look up, e.g. 341 for Itaú.
limitnumbernoMax results when listing/filtering (default 25).

Example call

Arguments

{
  "search": "nubank"
}

curl

curl -X POST https://gateway.pipeworx.io/latam-validate/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"brasil_banks","arguments":{"search":"nubank"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('brasil_banks', {
  "search": "nubank"
});

More examples

{
  "code": 341
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "latam-validate": {
      "url": "https://gateway.pipeworx.io/latam-validate/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 29, 2026