table_info
Pack: dst-dk · Endpoint: https://gateway.pipeworx.io/dst-dk/mcp
Metadata for a table: title, unit, last updated, and the full list of variables with their codes and valid value ids. READ THIS BEFORE get_data to learn the exact variable codes (e.g. “OMRÅDE”, “Tid”) and value ids you must pass.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
tableId | string | yes | Table id, e.g. “FOLK1C”. |
lang | string | no | Language: “en” (default) or “da”. |
Example call
Arguments
{
"tableId": "FOLK1C"
}
curl
curl -X POST https://gateway.pipeworx.io/dst-dk/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"table_info","arguments":{"tableId":"FOLK1C"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('table_info', {
"tableId": "FOLK1C"
});
More examples
{
"tableId": "FOLK1C",
"lang": "da"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"dst-dk": {
"url": "https://gateway.pipeworx.io/dst-dk/mcp"
}
}
}
See Getting Started for client-specific install steps.