inegi_indicator

Pack: inegi · Endpoint: https://gateway.pipeworx.io/inegi/mcp

Fetch any INEGI indicator by its numeric id, at a chosen geographic level — escape hatch for the full Banco de Indicadores (GDP, employment/ENOE, economic census, prices, etc.). Returns the latest value (or full history). Find indicator ids with INEGI’s “Constructor de consultas” at inegi.org.mx/app/indicadores. NOTE: for Mexico inflation, interest rates, and the peso exchange rate, the banxico pack is usually the better source.

Parameters

NameTypeRequiredDescription
indicator_idstringyesINEGI indicator id, e.g. “1002000001” (total population).
areastringno
sourcestringnoData bank: “BISE” (Banco de Indicadores, default) or “BIE” (Banco de Información Económica — economic time series).
all_historybooleannoReturn the full time series instead of just the latest observation. Default false.

Example call

Arguments

{
  "indicator_id": "1002000001",
  "_apiKey": "your-inegi-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/inegi/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"inegi_indicator","arguments":{"indicator_id":"1002000001","_apiKey":"your-inegi-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('inegi_indicator', {
  "indicator_id": "1002000001",
  "_apiKey": "your-inegi-api-key"
});

More examples

{
  "indicator_id": "1002000001",
  "area": "Jalisco",
  "all_history": true,
  "_apiKey": "your-inegi-api-key"
}

Connect

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

{
  "mcpServers": {
    "inegi": {
      "url": "https://gateway.pipeworx.io/inegi/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 3, 2026