brasil_cep

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

Look up a Brazilian CEP (postal code) and return the address: street, neighborhood, city, and state, with coordinates when available. Example: CEP 01310-100 → Avenida Paulista, Bela Vista, São Paulo, SP.

Parameters

NameTypeRequiredDescription
cepstringyesThe 8-digit CEP, e.g. “01310-100” or “01310100”.

Example call

Arguments

{
  "cep": "01310-100"
}

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_cep","arguments":{"cep":"01310-100"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('brasil_cep', {
  "cep": "01310-100"
});

More examples

{
  "cep": "01310100"
}

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