Skip to main content
Glama

Search Gazette Corporate Insolvency Notices

gazette_insolvency
Read-onlyIdempotent

Search The Gazette's insolvency notice index by entity name.

Searches The Gazette's corporate-insolvency notice index using the authoritative Gazette notice-code taxonomy. Results are sorted by an internal DD severity score; the notice label itself remains a source fact.

Each result includes a notice_numeric_id. Read the full legal wording via the notice://{notice_numeric_id} resource.

The Gazette is the official UK public record. A notice here means the event has been formally published and is legally effective.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoCompany or individual name to search for in Gazette insolvency notices
queryNoAlias for name.
end_dateNoFilter notices up to this date (YYYY-MM-DD)
start_dateNoFilter notices from this date (YYYY-MM-DD)
entity_nameNoDeprecated alias for name.
max_noticesNoCap on notices returned, applied after severity/date sort. Default 20. The Gazette insolvency feed returns up to 100 results per search — raise to 100 to see the full set.
notice_typeNoFilter by Gazette notice code (e.g. '2450' petition to wind up a company, '2452' winding-up order, '2410' appointment of administrators). Omit to search all.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
noticesNoMatching notices, sorted by severity (desc) then date (desc).
end_dateNoUpper bound of the date range filter, if any.
start_dateNoLower bound of the date range filter, if any.
entity_nameYesEntity name that was searched.
total_noticesYesTotal notices returned after deduplication, sorting, and cap.
max_notices_capYesThe max_notices cap applied. Upstream may have more matching notices.
notice_type_filterNoNotice code filter applied, or null if all codes searched.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed3 schema fields changed
    • changedInput schema / properties / notice_type / description
      Previous value: -"Filter by notice code (e.g. '2441' winding-up petition, '2443' winding-up order, '2448' administration order, '2460' striking-off). Omit to search all."New value: +"Filter by Gazette notice code (e.g. '2450' petition to wind up a company, '2452' winding-up order, '2410' appointment of administrators). Omit to search all."
    • changedOutput schema / properties / notices / items / properties / notice_code / description
      Previous value: -"Gazette notice code (e.g. '2443' winding-up order, '2448' administration order)."New value: +"Gazette notice code (e.g. '2450' petition to wind up a company, '2452' winding-up order for a company)."
    • changedOutput schema / properties / notices / items / properties / severity / description
      Previous value: -"Internal severity score 0-10. Higher = more serious (10 = Winding-Up Order, 9 = Administration Order / Receiver, 0 = unclassified)."New value: +"Internal severity score 0-10. Higher = more serious (10 = winding-up order, 9 = administration/receiver/liquidator appointment, 0 = informational or unclassified)."
  2. Changed9 schema fields changed
    • addedInput schema / properties / entity_name / anyOf
      Added value: +[
      +  {
      +    "maxLength": 200,
      +    "minLength": 2,
      +    "type": "string"
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • addedInput schema / properties / entity_name / default
      Added value: +null
    • changedInput schema / properties / entity_name / description
      Previous value: -"Company or individual name to search for in Gazette insolvency notices"New value: +"Deprecated alias for name."
    • removedInput schema / properties / entity_name / maxLength
      Removed value: -200
    • removedInput schema / properties / entity_name / minLength
      Removed value: -2
    • removedInput schema / properties / entity_name / type
      Removed value: -"string"
    • addedInput schema / properties / name
      Added value: +{
      +  "anyOf": [
      +    {
      +      "maxLength": 200,
      +      "minLength": 2,
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Company or individual name to search for in Gazette insolvency notices"
      +}
    • addedInput schema / properties / query
      Added value: +{
      +  "anyOf": [
      +    {
      +      "maxLength": 200,
      +      "minLength": 2,
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Alias for name."
      +}
    • removedInput schema / required
      Removed value: -[
      -  "entity_name"
      -]
  3. Added
  4. Removed
  5. Changed2 schema fields changed
    • changedInput schema / properties / max_notices / description
      Previous value: -"Global cap on total notices returned across all codes, after severity/date sort. Default 20. Raise up to 140 (14 codes × 10) to see the full result set."New value: +"Cap on notices returned, applied after severity/date sort. Default 20. The Gazette insolvency feed returns up to 100 results per search — raise to 100 to see the full set."
    • changedInput schema / properties / max_notices / maximum
      Previous value: -140New value: +100
  6. Changed8 schema fields changed
    • removedInput schema / properties / max_content_chars
      Removed value: -{
      -  "default": 500,
      -  "description": "Per-notice cap on the free-text `content` field. Default 500 keeps responses bounded; raise for notices where the full legal wording matters.",
      -  "maximum": 20000,
      -  "minimum": 50,
      -  "type": "integer"
      -}
    • changedOutput schema / properties / notices / items / properties / content / description
      Previous value: -"Notice body. May be truncated per the `max_content_chars` input."New value: +"Brief notice excerpt from the search feed (HTML stripped). For full legal wording read notice://{notice_numeric_id}."
    • removedOutput schema / properties / notices / items / properties / content_original_length
      Removed value: -{
      -  "default": 0,
      -  "description": "Original length of the notice content before truncation.",
      -  "type": "integer"
      -}
    • removedOutput schema / properties / notices / items / properties / content_truncated
      Removed value: -{
      -  "default": false,
      -  "description": "True if content was truncated.",
      -  "type": "boolean"
      -}
    • changedOutput schema / properties / notices / items / properties / date / description
      Previous value: -"Publication/notice date (ISO format where available)."New value: +"Publication date (ISO YYYY-MM-DD)."
    • removedOutput schema / properties / notices / items / properties / edition
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "type": "string"
      -    },
      -    {
      -      "type": "null"
      -    }
      -  ],
      -  "default": null,
      -  "description": "Gazette edition identifier."
      -}
    • changedOutput schema / properties / notices / items / properties / notice_id / description
      Previous value: -"Upstream notice ID (typically a URI)."New value: +"Gazette notice URI (e.g. 'https://www.thegazette.co.uk/id/notice/5122793')."
    • addedOutput schema / properties / notices / items / properties / notice_numeric_id
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Numeric notice ID. Read full notice content via the notice://{notice_numeric_id} resource."
      +}
  7. Changed4 schema fields changed
    • addedInput schema / properties / max_notices
      Added value: +{
      +  "default": 20,
      +  "description": "Global cap on total notices returned across all codes, after severity/date sort. Default 20. Raise up to 140 (14 codes × 10) to see the full result set.",
      +  "maximum": 140,
      +  "minimum": 1,
      +  "type": "integer"
      +}
    • addedOutput schema / properties / max_notices_cap
      Added value: +{
      +  "description": "The max_notices cap applied. Upstream may have more matching notices.",
      +  "type": "integer"
      +}
    • changedOutput schema / properties / total_notices / description
      Previous value: -"Total notices returned after deduplication and sorting."New value: +"Total notices returned after deduplication, sorting, and cap."
    • changedOutput schema / required
      Previous value: -[
      -  "entity_name",
      -  "total_notices"
      -]New value: +[
      +  "entity_name",
      +  "total_notices",
      +  "max_notices_cap"
      +]
  8. Changed12 schema fields changed
    • addedInput schema / properties / max_content_chars
      Added value: +{
      +  "default": 500,
      +  "description": "Per-notice cap on the free-text `content` field. Default 500 keeps responses bounded; raise for notices where the full legal wording matters.",
      +  "maximum": 20000,
      +  "minimum": 50,
      +  "type": "integer"
      +}
    • removedInput schema / properties / response_format
      Removed value: -{
      -  "default": "markdown",
      -  "description": "Output format: 'markdown' or 'json'",
      -  "type": "string"
      -}
    • changedOutput schema / description
      Previous value: -"Generic wrapper for non-object return types."New value: +"Aggregated Gazette insolvency notice search result."
    • addedOutput schema / properties / end_date
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Upper bound of the date range filter, if any."
      +}
    • addedOutput schema / properties / entity_name
      Added value: +{
      +  "description": "Entity name that was searched.",
      +  "type": "string"
      +}
    • addedOutput schema / properties / notice_type_filter
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Notice code filter applied, or null if all codes searched."
      +}
    • addedOutput schema / properties / notices
      Added value: +{
      +  "description": "Matching notices, sorted by severity (desc) then date (desc).",
      +  "items": {
      +    "description": "A single corporate insolvency notice from The Gazette.",
      +    "properties": {
      +      "content": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Notice body. May be truncated per the `max_content_chars` input."
      +      },
      +      "content_original_length": {
      +        "default": 0,
      +        "description": "Original length of the notice content before truncation.",
      +        "type": "integer"
      +      },
      +      "content_truncated": {
      +        "default": false,
      +        "description": "True if content was truncated.",
      +        "type": "boolean"
      +      },
      +      "date": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Publication/notice date (ISO format where available)."
      +      },
      +      "edition": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Gazette edition identifier."
      +      },
      +      "notice_code": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Gazette notice code (e.g. '2443' winding-up order, '2448' administration order)."
      +      },
      +      "notice_id": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Upstream notice ID (typically a URI)."
      +      },
      +      "notice_type": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Human-readable notice type label (e.g. 'Winding-Up Order')."
      +      },
      +      "severity": {
      +        "default": 0,
      +        "description": "Internal severity score 0-10. Higher = more serious (10 = Winding-Up Order, 9 = Administration Order / Receiver, 0 = unclassified).",
      +        "type": "integer"
      +      },
      +      "title": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Notice title."
      +      }
      +    },
      +    "type": "object"
      +  },
      +  "type": "array"
      +}
    • removedOutput schema / properties / result
      Removed value: -{
      -  "type": "string"
      -}
    • addedOutput schema / properties / start_date
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Lower bound of the date range filter, if any."
      +}
    • addedOutput schema / properties / total_notices
      Added value: +{
      +  "description": "Total notices returned after deduplication and sorting.",
      +  "type": "integer"
      +}
    • changedOutput schema / required
      Previous value: -[
      -  "result"
      -]New value: +[
      +  "entity_name",
      +  "total_notices"
      +]
    • removedOutput schema / x-fastmcp-wrap-result
      Removed value: -true
  9. First observed

TDQS

A4.1/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds meaningful behavioral context beyond the annotations: results are sorted by an internal DD severity score, the notice label is preserved as a source fact, and a published notice is legally effective. These details are not visible in the annotations and help an agent interpret results and avoid assuming chronological ordering.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured and mostly front-loaded, but the first two sentences both announce the same search operation with slightly different phrasing. Every other sentence earns its place by explaining sorting, result IDs, or the legal significance of a Gazette notice.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers the key non-obvious behaviors an agent needs: the insolvency-specific scope, severity-based sorting, the presence of notice_numeric_id, the separate notice resource for full wording, and the legal effectiveness of published notices. Given that an output schema exists and the parameter schema is fully documented, nothing critical appears missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already provides 100% coverage of parameter meanings, including aliases, date formats, max_notices caps, and notice_type examples. The description adds some useful context around the notice-code taxonomy and the result's numeric ID, but it does not materially improve parameter-level understanding beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description names a specific verb ('Search') and a specific resource ('The Gazette's corporate-insolvency notice index'), and also indicates the search is by entity name. It differentiates this tool from siblings like gazette_notice by noting results contain a notice_numeric_id and that the full legal wording is available separately via a notice:// resource.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description clearly frames this as the entry point for finding insolvency notices and then directs the user to read the full legal wording via notice://{notice_numeric_id}, which functions as an implicit alternative path. It does not explicitly state 'use gazette_notice for full notices' or list exclusions, but the context is clear enough for an agent to choose correctly.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.