get_filings
Pack: companies-house · Endpoint: https://gateway.pipeworx.io/companies-house/mcp
Filing history for a UK company — annual returns, accounts, changes of address/directors, charges, mortgages. Returns category, description, filing date, transaction ID, and links to filed documents.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
company_number | string | yes | UK company number |
category | string | no | Optional filter (accounts | confirmation-statement | officers | etc.) |
items_per_page | number | no | 1-100 (default 25) |
start_index | number | no | Pagination offset (default 0) |
Example call
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":{}}}'
Response shape
Always returns: company_number, total, filings
| Field | Type | Description |
|---|---|---|
company_number | string | UK company number |
total | number | Total number of filings |
filings | array | List 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.