UK Gazette Official Notices

live GovernmentEurope

The Gazette — the UK's official public record: company insolvencies, winding-up petitions, bankruptcies, deceased estates, honours, and statutory notices (London, Edinburgh and Belfast editions, archive to 1665).

5 tools
0ms auth
free tier 50 calls/day

Tools

gazette_search_notices

Search The Gazette — the UK's official public record of statutory notices (London, Edinburgh and Belfast editions, archive back to 1665). Full-text search plus filters for notice category, publication

No parameters required.

Try it
gazette_insolvency_notices

Search official UK insolvency notices in The Gazette — the statutory public record where liquidations, administrations, winding-up petitions and orders, bankruptcy orders, creditors' meetings, and not

No parameters required.

Try it
gazette_deceased_estates

Search UK deceased-estates notices in The Gazette (Trustee Act 1925 s.27 notices) — executors advertise a death so creditors and claimants can come forward before the estate is distributed. Used for p

No parameters required.

Try it
gazette_get_notice

Get the structured record for one Gazette notice by its ID (from any gazette search tool, or a thegazette.co.uk/notice/<id> URL). Returns the notice type, publication date, gazette edition and issue,

No parameters required.

Try it
gazette_notice_categories

Browse The Gazette's notice-category taxonomy — the category codes accepted by gazette_search_notices. Optionally filter by a search word. Categories span companies (insolvency, name changes, mergers)

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/uk-gazette/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/uk-gazette/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"gazette_search_notices","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("gazette_search_notices", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("the gazette — the uk's official public record: company insolvencies, winding-up petitions, bankruptcies, deceased estates, honours, and statutory notices (london, edinburgh and belfast editions, archive to 1665)");