Official Brazilian postal service. Package tracking, shipping rate calculation, CEP lookup, SEDEX, and PAC.
Correios gives your agent 21 tools it calls directly β pick the ones it needs, in Claude, Cursor, or any MCP client.
track_package β Track a package by Correios tracking codetrack_bulk β Track multiple Correios packages in a single call (up to 50 codes)calculate_shipping β Calculate shipping rates between two CEPs// 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("track_package", { /* ... */ });$ npm install @codespar/mcp-correios@alphaAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"correios": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-correios@alpha"
],
"env": {
"CORREIOS_TOKEN": "<your_correios_token>"
}
}
}
}After restart, your agent can call any of the 21 tools below β try track_package first.
Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
CORREIOS_TOKENAPI key for correios
Each tool is independent β your agent loads only what it needs to reduce context and response time.
track_packagetrack_bulkcalculate_shippingget_delivery_timelist_servicesfind_cepfind_cep_bulklist_cep_rangesMCP is a protocol β any framework that speaks it can mount this server.