query_resource

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

Pull rows from a tabular Netherlands Open Data resource (CKAN DataStore) by resource_id (from a dataset’s resources). Optional full-text q, limit, offset. Note: only resources with the DataStore enabled are queryable.

Parameters

NameTypeRequiredDescription
resource_idstringyesA resource_id from dataset/search_datasets.
qstringnoOptional full-text filter over the rows.
limitnumbernoMax rows (default 100).
offsetnumbernoPagination offset.

Example call

Arguments

{
  "resource_id": "abc123def456"
}

curl

curl -X POST https://gateway.pipeworx.io/data-nl/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"query_resource","arguments":{"resource_id":"abc123def456"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('query_resource', {
  "resource_id": "abc123def456"
});

More examples

{
  "resource_id": "xyz789uvw012",
  "q": "Amsterdam",
  "limit": 50
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 10, 2026