macau_indicators
Pack: macau-stats · Endpoint: https://gateway.pipeworx.io/macau-stats/mcp
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 Service / 澳門統計暨普查局). Returns each indicator’s id, name in English, 中文 (Traditional Chinese) and Portuguese, and reporting frequency. Pass query to filter by keyword (matches any language); omit it to list all 143. Use this to find the right id/name for macau_indicator. Answers “what economic indicators does Macau publish”, “find Macau’s tourism statistics”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Optional keyword to filter indicators by name, in English, 中文 or Portuguese, e.g. “gaming”, “population”, “turismo”. |
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/macau-stats/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"macau_indicators","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('macau_indicators', {});
More examples
{
"query": "gaming"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"macau-stats": {
"url": "https://gateway.pipeworx.io/macau-stats/mcp"
}
}
}
See Getting Started for client-specific install steps.