recently_changed_packages

Pack: data-govt-nz · Endpoint: https://gateway.pipeworx.io/data-govt-nz/mcp

New Zealand open data catalogue (data.govt.nz CKAN) — datasets most recently created or updated, paginated by limit/offset. Use to monitor NZ government open data activity.

Parameters

NameTypeRequiredDescription
limitnumberno
offsetnumberno

Example call

Arguments

{
  "limit": 10,
  "offset": 0
}

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":"recently_changed_packages","arguments":{"limit":10,"offset":0}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('recently_changed_packages', {
  "limit": 10,
  "offset": 0
});

Response shape

Always returns: items, count

FieldTypeDescription
itemsarrayRecently changed/updated datasets
countintegerNumber of items returned.
Full JSON Schema
{
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Activity ID"
          },
          "timestamp": {
            "type": "string",
            "description": "Activity timestamp"
          },
          "package_id": {
            "type": "string",
            "description": "Related package ID"
          },
          "activity_type": {
            "type": "string",
            "description": "Type of activity"
          },
          "object_id": {
            "type": "string",
            "description": "Object ID that was changed"
          }
        }
      },
      "description": "Recently changed/updated datasets"
    },
    "count": {
      "type": "integer",
      "description": "Number of items returned."
    }
  },
  "required": [
    "items",
    "count"
  ]
}

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.

Regenerated from source · build July 8, 2026