table_dimensions

Pack: cbs-nl · Endpoint: https://gateway.pipeworx.io/cbs-nl/mcp

Column/dimension definitions for a table (DataProperties): what each field means, its key, type, unit and decimals. Use this before get_data to learn which $select keys and $filter dimensions exist.

Parameters

NameTypeRequiredDescription
tablestringyesCBS table id, e.g. “37296eng”.

Example call

Arguments

{
  "table": "37296eng"
}

curl

curl -X POST https://gateway.pipeworx.io/cbs-nl/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"table_dimensions","arguments":{"table":"37296eng"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('table_dimensions', {
  "table": "37296eng"
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "cbs-nl": {
      "url": "https://gateway.pipeworx.io/cbs-nl/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 28, 2026