group_show
Pack: data-govt-nz · Endpoint: https://gateway.pipeworx.io/data-govt-nz/mcp
New Zealand open data catalogue (data.govt.nz CKAN) — full detail for a thematic group by ID: title, description, and optionally the datasets it contains.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | |
include_datasets | boolean | no |
Example call
Arguments
{
"id": "economy"
}
curl
curl -X POST https://gateway.pipeworx.io/data-govt-nz/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"group_show","arguments":{"id":"economy"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('group_show', {
"id": "economy"
});
More examples
{
"id": "environment",
"include_datasets": true
}
Response shape
| Field | Type | Description |
|---|---|---|
id | string | Group ID |
name | string | Group name |
title | string | Group title |
description | string | Group description |
datasets | array | Group datasets if include_datasets=true |
Full JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Group ID"
},
"name": {
"type": "string",
"description": "Group name"
},
"title": {
"type": "string",
"description": "Group title"
},
"description": {
"type": "string",
"description": "Group description"
},
"datasets": {
"type": "array",
"items": {
"type": "object"
},
"description": "Group datasets if include_datasets=true"
}
},
"description": "Single group/category details"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"data-govt-nz": {
"url": "https://gateway.pipeworx.io/data-govt-nz/mcp"
}
}
}
See Getting Started for client-specific install steps.