list_aggregates

Pack: ibge-br · Endpoint: https://gateway.pipeworx.io/ibge-br/mcp

Browse the catalog of IBGE/SIDRA aggregate tables grouped by subject (inflation, agriculture, demographics, etc.). Use to discover aggregate ids to pass to aggregated_data. Optionally filter by research/subject acronym.

Parameters

NameTypeRequiredDescription
acronymstringnoOptional research acronym to filter by, e.g. “PNAD”, “IPCA”. Omit to list everything.

Example call

Arguments

{
  "acronym": "IPCA"
}

curl

curl -X POST https://gateway.pipeworx.io/ibge-br/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_aggregates","arguments":{"acronym":"IPCA"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('list_aggregates', {
  "acronym": "IPCA"
});

More examples

{
  "acronym": "PNAD"
}

Connect

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

{
  "mcpServers": {
    "ibge-br": {
      "url": "https://gateway.pipeworx.io/ibge-br/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 28, 2026