gazette_get_notice

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

Get the structured record for one Gazette notice by its ID (from any gazette search tool, or a thegazette.co.uk/notice/ URL). Returns the notice type, publication date, gazette edition and issue, companies named (with Companies House numbers), people, addresses with coordinates, related legislation, and key dates. Example: gazette_get_notice({ notice_id: “4123456” })

Parameters

NameTypeRequiredDescription
notice_idstringyesNotice ID — numeric (e.g. “4123456”) or legacy alphanumeric (e.g. “L-60768-1986497”)

Example call

Arguments

{
  "notice_id": "4123456"
}

curl

curl -X POST https://gateway.pipeworx.io/uk-gazette/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"gazette_get_notice","arguments":{"notice_id":"4123456"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('gazette_get_notice', {
  "notice_id": "4123456"
});

More examples

{
  "notice_id": "L-60768-1986497"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build September 5, 2026