get_filings

Pack: companies-house · Endpoint: https://gateway.pipeworx.io/companies-house/mcp

Retrieve filing history for a UK company by company_number (from search_companies). Returns up to 25 filings per page — each with category, type, description, filing date, action date, transaction ID, page count, and document metadata URL. Filter by category (accounts | confirmation-statement | officers | etc.).

Parameters

NameTypeRequiredDescription
company_numberstringyesUK company number
categorystringnoOptional filter (accounts | confirmation-statement | officers | etc.)
items_per_pagenumberno1-100 (default 25)
start_indexnumbernoPagination offset (default 0)

Example call

Arguments

{
  "company_number": "00006245"
}

curl

curl -X POST https://gateway.pipeworx.io/companies-house/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_filings","arguments":{"company_number":"00006245"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_filings', {
  "company_number": "00006245"
});

More examples

{
  "company_number": "00006245",
  "category": "accounts",
  "items_per_page": 25
}

Response shape

Always returns: company_number, total, filings

FieldTypeDescription
company_numberstringUK company number
totalnumberTotal number of filings
filingsarrayList of filing history records
Full JSON Schema
{
  "type": "object",
  "properties": {
    "company_number": {
      "type": "string",
      "description": "UK company number"
    },
    "total": {
      "type": "number",
      "description": "Total number of filings"
    },
    "filings": {
      "type": "array",
      "description": "List of filing history records",
      "items": {
        "type": "object",
        "properties": {
          "category": {
            "type": [
              "string",
              "null"
            ],
            "description": "Filing category (accounts, confirmation-statement, etc.)"
          },
          "type": {
            "type": [
              "string",
              "null"
            ],
            "description": "Filing type"
          },
          "description": {
            "type": [
              "string",
              "null"
            ],
            "description": "Filing description"
          },
          "filed_on": {
            "type": [
              "string",
              "null"
            ],
            "description": "Filing date (ISO format)"
          },
          "action_date": {
            "type": [
              "string",
              "null"
            ],
            "description": "Action date (ISO format)"
          },
          "transaction_id": {
            "type": [
              "string",
              "null"
            ],
            "description": "Filing transaction ID"
          },
          "pages": {
            "type": [
              "number",
              "null"
            ],
            "description": "Number of pages in filing"
          },
          "document_metadata": {
            "type": [
              "string",
              "null"
            ],
            "description": "Link to document metadata"
          }
        }
      }
    }
  },
  "required": [
    "company_number",
    "total",
    "filings"
  ]
}

Connect

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

{
  "mcpServers": {
    "companies-house": {
      "url": "https://gateway.pipeworx.io/companies-house/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build June 27, 2026