search_tables

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

Find CBS StatLine datasets by keyword (matched against title). Returns table id, title, period and language. Table ids ending in “eng”/“ENG” have English labels; others are Dutch.

Parameters

NameTypeRequiredDescription
keywordstringyesSearch term matched in the table title, e.g. “population”, “energy”, “wages”.
english_onlybooleannoIf true, only return English-language tables (id ends in “eng”). Default false.
topnumbernoMax results (default 25).

Example call

Arguments

{
  "keyword": "population"
}

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":"search_tables","arguments":{"keyword":"population"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('search_tables', {
  "keyword": "population"
});

More examples

{
  "keyword": "energy",
  "english_only": true,
  "top": 10
}

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