organisations

Pack: gov-uk-content · Endpoint: https://gateway.pipeworx.io/gov-uk-content/mcp

List GOV.UK government organisations (departments, agencies, etc.) with title, URL path, acronym, and operational state, paginated via start and count (default 20, max 100 per page).

Parameters

NameTypeRequiredDescription
startnumberno
countnumberno

Example call

Arguments

{
  "start": 0,
  "count": 50
}

curl

curl -X POST https://gateway.pipeworx.io/gov-uk-content/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"organisations","arguments":{"start":0,"count":50}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('organisations', {
  "start": 0,
  "count": 50
});

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "List of organisations from GOV.UK filtered search"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "gov-uk-content": {
      "url": "https://gateway.pipeworx.io/gov-uk-content/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026