tags

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

List or keyword-search tags in the data.gov.au CKAN catalogue; returns tag names useful as filters in search.

Parameters

NameTypeRequiredDescription
querystringno
limitnumberno

Example call

Arguments

{
  "query": "environment"
}

curl

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":"tags","arguments":{"query":"environment"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('tags', {
  "query": "environment"
});

More examples

{
  "query": "health",
  "limit": 20
}

Response shape

Always returns: items, count

FieldTypeDescription
itemsarrayList of tags, optionally filtered by query
countintegerNumber of items returned.
Full JSON Schema
{
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "description": "List of tags, optionally filtered by query",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Tag UUID"
          },
          "name": {
            "type": "string",
            "description": "Tag name"
          },
          "vocabulary_id": {
            "type": [
              "string",
              "null"
            ],
            "description": "Vocabulary UUID if applicable"
          }
        }
      }
    },
    "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": {
    "datagov-au": {
      "url": "https://gateway.pipeworx.io/datagov-au/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026