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