organizations

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

List publishing organizations.

Parameters

NameTypeRequiredDescription
limitnumberno1-1000 (default 100).

Example call

Arguments

{
  "limit": 100
}

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":"organizations","arguments":{"limit":100}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('organizations', {
  "limit": 100
});

Response shape

Always returns: items, count

FieldTypeDescription
itemsarrayList of publishing organizations
countintegerNumber of items returned.
Full JSON Schema
{
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "description": "List of publishing organizations",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Organization UUID"
          },
          "name": {
            "type": "string",
            "description": "Organization name/slug"
          },
          "title": {
            "type": "string",
            "description": "Organization display name"
          },
          "description": {
            "type": "string",
            "description": "Organization description"
          },
          "created": {
            "type": "string",
            "description": "ISO 8601 creation timestamp"
          },
          "image_url": {
            "type": "string",
            "description": "Organization logo/image URL"
          },
          "package_count": {
            "type": "number",
            "description": "Number of packages published"
          }
        }
      }
    },
    "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