censtatd_get_table
Pack: censtatd-hk · Endpoint: https://gateway.pipeworx.io/censtatd-hk/mcp
Fetch a Hong Kong Census & Statistics Department statistical table as structured JSON
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | Table id, e.g. ‘310-31001’ (GDP), ‘340-46001’ (exchange rates). |
lang | string | no | Description language: en, tc (traditional), sc (simplified). Default en. |
param | string | no | OPTIONAL opaque lz-string param copied from the C&SD web_table “API Example” box. |
Example call
Arguments
{
"id": "310-31001"
}
curl
curl -X POST https://gateway.pipeworx.io/censtatd-hk/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"censtatd_get_table","arguments":{"id":"310-31001"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('censtatd_get_table', {
"id": "310-31001"
});
More examples
{
"id": "340-46001",
"lang": "en"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"censtatd-hk": {
"url": "https://gateway.pipeworx.io/censtatd-hk/mcp"
}
}
}
See Getting Started for client-specific install steps.