Macau Stats
live ReferenceMacau Statistics MCP — DSEC (Direcção dos Serviços de Estatística e Censos
Tools
macau_indicators Catalogue of Macau's 143 official key statistical indicators (population, visitor arrivals, gaming revenue, CPI, unemployment, crime, births/deaths, and more) from DSEC (Macao Statistics and Census Se
No parameters required.
Try it
macau_indicator Latest published value (and, when a reliable match exists, recent history) for one of Macau's 143 DSEC key indicators. Pass either the numeric `id` from `macau_indicators`, or a `name` keyword (Englis
No parameters required.
Try it
macau_gaming_revenue Macau's monthly gross revenue of games of chance (澳門博彩毛收入 / receita bruta dos jogos de fortuna ou azar) — the headline casino-gaming-revenue figure, in million MOP, from DSEC. This is the SAME monthly
No parameters required.
Try it
macau_population Macau's total resident population (澳門總人口 / população total de Macau), quarterly, from DSEC. Answers "what is Macau's population".
No parameters required.
Try it
macau_tourism Macau visitor arrivals (訪澳旅客人數 / chegadas de visitantes a Macau), monthly, from DSEC — the headline tourism-volume figure. Answers "how many tourists visited Macau", "Macau visitor arrivals this month
No parameters required.
Try it
macau_employment Macau's labour-market snapshot from DSEC: overall unemployment rate, total employment and overall median monthly employment earnings (each on its own DSEC reporting cycle — unemployment/employment are
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/macau-stats/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/macau-stats/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"macau_indicators","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("macau_indicators", {}); // Or ask in plain English:
const answer = await px.ask("macau statistics mcp — dsec (direcção dos serviços de estatística e censos");