dataset_details

Pack: datagov-ie · Endpoint: https://gateway.pipeworx.io/datagov-ie/mcp

Full dataset record by id or slug (CKAN package_show), including its resources. Each resource has a download “url” (often PDF/CSV/XLSX) and a “datastore_active” flag; resources with datastore_active=true can be read row-by-row via datastore_query using the resource “id”.

Parameters

NameTypeRequiredDescription
idstringyesDataset id or slug, e.g. “budget” or “1968fourthamendmentcsv”.

Example call

Arguments

{
  "id": "budget"
}

curl

curl -X POST https://gateway.pipeworx.io/datagov-ie/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"dataset_details","arguments":{"id":"budget"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('dataset_details', {
  "id": "budget"
});

More examples

{
  "id": "1968fourthamendmentcsv"
}

Connect

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

{
  "mcpServers": {
    "datagov-ie": {
      "url": "https://gateway.pipeworx.io/datagov-ie/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 1, 2026