taxons

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

Fetch a GOV.UK taxonomy tree node by base_path (defaults to root ”/”), returning the taxon’s title, description, phase, links to child taxons, and associated content items.

Parameters

NameTypeRequiredDescription
base_pathstringno

Example call

Arguments

{
  "base_path": "/education"
}

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":"taxons","arguments":{"base_path":"/education"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('taxons', {
  "base_path": "/education"
});

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Taxonomy tree node from GOV.UK content API"
}

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