get_dataset

Pack: statbel-be · Endpoint: https://gateway.pipeworx.io/statbel-be/mcp

Multilingual metadata for one Statbel dataset by its id (a UUID, e.g. the dataSourceId from a view).

Parameters

NameTypeRequiredDescription
idstringyesDataset (datasource) UUID, e.g. “89cf1b74-dc88-4a76-a215-a25dffed7f37”.

Example call

Arguments

{
  "id": "89cf1b74-dc88-4a76-a215-a25dffed7f37"
}

curl

curl -X POST https://gateway.pipeworx.io/statbel-be/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_dataset","arguments":{"id":"89cf1b74-dc88-4a76-a215-a25dffed7f37"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_dataset', {
  "id": "89cf1b74-dc88-4a76-a215-a25dffed7f37"
});

Connect

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

{
  "mcpServers": {
    "statbel-be": {
      "url": "https://gateway.pipeworx.io/statbel-be/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 31, 2026