dataset_dimensions

Pack: datacube-sk · Endpoint: https://gateway.pipeworx.io/datacube-sk/mcp

List the dimensions of one cube, in path order, with each dimension’s

Parameters

NameTypeRequiredDescription
cubestringyesCube code, e.g. “as1001rs” (from list_datasets).
langstringnoLabel language (default “en”).

Example call

Arguments

{
  "cube": "as1001rs"
}

curl

curl -X POST https://gateway.pipeworx.io/datacube-sk/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"dataset_dimensions","arguments":{"cube":"as1001rs"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('dataset_dimensions', {
  "cube": "as1001rs"
});

More examples

{
  "cube": "as1001rs",
  "lang": "sk"
}

Connect

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

{
  "mcpServers": {
    "datacube-sk": {
      "url": "https://gateway.pipeworx.io/datacube-sk/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 31, 2026