package
Pack: datagov-au · Endpoint: https://gateway.pipeworx.io/datagov-au/mcp
Single package (dataset) by id or name.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes |
Example call
curl -X POST https://gateway.pipeworx.io/datagov-au/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"package","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
id | string | Package UUID |
name | string | Package name/slug |
title | string | Package display title |
notes | string | Package description |
author | string | Author name |
author_email | string | Author email |
maintainer | string | Maintainer name |
maintainer_email | string | Maintainer email |
license_id | string | License identifier |
license_title | string | License display name |
url | string | Package homepage URL |
version | string | Package version |
organization | object | |
groups | array | Theme groups (categories) |
tags | array | Tags associated with package |
resources | array | Downloadable resources (files) |
metadata_created | string | ISO 8601 creation timestamp |
metadata_modified | string | ISO 8601 modification timestamp |
Full JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Package UUID"
},
"name": {
"type": "string",
"description": "Package name/slug"
},
"title": {
"type": "string",
"description": "Package display title"
},
"notes": {
"type": "string",
"description": "Package description"
},
"author": {
"type": "string",
"description": "Author name"
},
"author_email": {
"type": "string",
"description": "Author email"
},
"maintainer": {
"type": "string",
"description": "Maintainer name"
},
"maintainer_email": {
"type": "string",
"description": "Maintainer email"
},
"license_id": {
"type": "string",
"description": "License identifier"
},
"license_title": {
"type": "string",
"description": "License display name"
},
"url": {
"type": "string",
"description": "Package homepage URL"
},
"version": {
"type": "string",
"description": "Package version"
},
"organization": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Organization UUID"
},
"name": {
"type": "string",
"description": "Organization name/slug"
},
"title": {
"type": "string",
"description": "Organization display name"
}
}
},
"groups": {
"type": "array",
"description": "Theme groups (categories)",
"items": {
"type": "object"
}
},
"tags": {
"type": "array",
"description": "Tags associated with package",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Tag UUID"
},
"name": {
"type": "string",
"description": "Tag name"
}
}
}
},
"resources": {
"type": "array",
"description": "Downloadable resources (files)",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Resource UUID"
},
"name": {
"type": "string",
"description": "Resource name"
},
"description": {
"type": "string",
"description": "Resource description"
},
"url": {
"type": "string",
"description": "Resource download URL"
},
"format": {
"type": "string",
"description": "File format (e.g. CSV, JSON)"
},
"size": {
"type": "number",
"description": "File size in bytes"
},
"last_modified": {
"type": "string",
"description": "ISO 8601 timestamp"
}
}
}
},
"metadata_created": {
"type": "string",
"description": "ISO 8601 creation timestamp"
},
"metadata_modified": {
"type": "string",
"description": "ISO 8601 modification timestamp"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"datagov-au": {
"url": "https://gateway.pipeworx.io/datagov-au/mcp"
}
}
}
See Getting Started for client-specific install steps.