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
| Name | Type | Required | Description |
|---|---|---|---|
indicator_id | string | yes | INEGI indicator id, e.g. “1002000001” (total population). |
area | string | no | |
source | string | no | Data bank: “BISE” (Banco de Indicadores, default) or “BIE” (Banco de Información Económica — economic time series). |
all_history | boolean | no | Return the full time series instead of just the latest observation. Default false. |
Example call
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":{}}}'
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.