dataset_details
Pack: overheid-nl · Endpoint: https://gateway.pipeworx.io/overheid-nl/mcp
Full dataset record by id or slug (CKAN package_show), including its resources. Each resource has a download “url” and “format” (CSV/JSON/etc.) — the portal is metadata-only, so fetch those URLs to get the actual data.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | Dataset id or slug, e.g. “leerlingen-speciaal-onderwijs-per-samenwerkingsverband-primair-onderwijs”. |
Example call
Arguments
{
"id": "leerlingen-speciaal-onderwijs-per-samenwerkingsverband-primair-onderwijs"
}
curl
curl -X POST https://gateway.pipeworx.io/overheid-nl/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"dataset_details","arguments":{"id":"leerlingen-speciaal-onderwijs-per-samenwerkingsverband-primair-onderwijs"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('dataset_details', {
"id": "leerlingen-speciaal-onderwijs-per-samenwerkingsverband-primair-onderwijs"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"overheid-nl": {
"url": "https://gateway.pipeworx.io/overheid-nl/mcp"
}
}
}
See Getting Started for client-specific install steps.