organization_show
Pack: data-govt-nz · Endpoint: https://gateway.pipeworx.io/data-govt-nz/mcp
New Zealand open data catalogue (data.govt.nz CKAN) — full profile for a publishing organization by ID: name, description, and optionally their list of published datasets.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | |
include_datasets | boolean | no |
Example call
Arguments
{
"id": "stats-nz"
}
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":"organization_show","arguments":{"id":"stats-nz"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('organization_show', {
"id": "stats-nz"
});
More examples
{
"id": "health-nz",
"include_datasets": true
}
Response shape
| Field | Type | Description |
|---|---|---|
id | string | Organization ID |
name | string | Organization name |
title | string | Organization title |
description | string | Organization description |
datasets | array | Organization datasets if include_datasets=true |
Full JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Organization ID"
},
"name": {
"type": "string",
"description": "Organization name"
},
"title": {
"type": "string",
"description": "Organization title"
},
"description": {
"type": "string",
"description": "Organization description"
},
"datasets": {
"type": "array",
"items": {
"type": "object"
},
"description": "Organization datasets if include_datasets=true"
}
},
"description": "Single organization 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.