package

Pack: datagov-au · Endpoint: https://gateway.pipeworx.io/datagov-au/mcp

Single package (dataset) by id or name.

Parameters

NameTypeRequiredDescription
idstringyes

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

FieldTypeDescription
idstringPackage UUID
namestringPackage name/slug
titlestringPackage display title
notesstringPackage description
authorstringAuthor name
author_emailstringAuthor email
maintainerstringMaintainer name
maintainer_emailstringMaintainer email
license_idstringLicense identifier
license_titlestringLicense display name
urlstringPackage homepage URL
versionstringPackage version
organizationobject
groupsarrayTheme groups (categories)
tagsarrayTags associated with package
resourcesarrayDownloadable resources (files)
metadata_createdstringISO 8601 creation timestamp
metadata_modifiedstringISO 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.

Regenerated from source · build May 21, 2026