dataset_details
Pack: govdata-de · Endpoint: https://gateway.pipeworx.io/govdata-de/mcp
Full dataset record by id or slug (CKAN package_show), including its resources. Read each resource’s “url” to download the underlying file (CSV/JSON/etc.) — GovData links out to the publishing authority rather than hosting tabular data.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | Dataset id (UUID) or slug from search_datasets results. |
Example call
Arguments
{
"id": "verkehrsdaten-bundesrepublik"
}
curl
curl -X POST https://gateway.pipeworx.io/govdata-de/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"dataset_details","arguments":{"id":"verkehrsdaten-bundesrepublik"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('dataset_details', {
"id": "verkehrsdaten-bundesrepublik"
});
Connect
Add this to your MCP client config:
{
"mcpServers": {
"govdata-de": {
"url": "https://gateway.pipeworx.io/govdata-de/mcp"
}
}
}
See Getting Started for client-specific install steps.