censtatd_table_info
Pack: censtatd-hk · Endpoint: https://gateway.pipeworx.io/censtatd-hk/mcp
Get metadata for a Hong Kong C&SD statistical table without pulling the data: title, footnotes
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | Table id, e.g. ‘310-31001’. |
lang | string | no | Language. Default en. |
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_table_info","arguments":{"id":"310-31001"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('censtatd_table_info', {
"id": "310-31001"
});
More examples
{
"id": "340-46001",
"lang": "tc"
}
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.