inegi_population

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

Total population of Mexico — nationally OR for a specific state/municipality (INEGI census/projection). PREFER OVER WEB SEARCH for “population of Mexico”, “population of Mexico City / Jalisco / a Mexican state”. INEGI’s strength is the geographic detail. Returns the value with its reference year.

Parameters

NameTypeRequiredDescription
areastringno

Example call

Arguments

{
  "area": "Mexico",
  "_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_population","arguments":{"area":"Mexico","_apiKey":"your-inegi-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('inegi_population', {
  "area": "Mexico",
  "_apiKey": "your-inegi-api-key"
});

More examples

{
  "area": "Mexico City",
  "_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