dataset_details
Pack: datagov-il · Endpoint: https://gateway.pipeworx.io/datagov-il/mcp
Full dataset record by id or slug (CKAN package_show), including its resources. Read each resource’s “id” (resource_id) and “datastore_active” flag to know which can be queried row-by-row via datastore_query.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | Dataset id or slug, e.g. “vaccine-codes-lot-nachlieli”. |
Example call
Arguments
{
"id": "vaccine-codes-lot-nachlieli"
}
curl
curl -X POST https://gateway.pipeworx.io/datagov-il/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"dataset_details","arguments":{"id":"vaccine-codes-lot-nachlieli"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('dataset_details', {
"id": "vaccine-codes-lot-nachlieli"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"datagov-il": {
"url": "https://gateway.pipeworx.io/datagov-il/mcp"
}
}
}
See Getting Started for client-specific install steps.