Companies House (UK)
liveGovernmentFinanceUK statutory company registry — search, officers, filings, persons with significant control. Free key required.
5tools
0msauth
free tier50 calls/day
Authentication
Companies House requires a free API key. Pass _apiKey on the gateway URL or register a developer key directly with HMRC.
Config with credentials
{
"mcpServers": {
"pipeworx-companies-house": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://gateway.pipeworx.io/companies-house/mcp?_apiKey=your_ch_key"
]
}
}
}Tools
search_companiesrequired: querySearch UK companies by name.
Parameters
NameTypeDescription
queryreqstringCompany nameitems_per_pageoptnumber1-100 (default 20)start_indexoptnumberPagination offsetTry it
Response
get_companyrequired: company_numberFull company profile by company number.
Parameters
NameTypeDescription
company_numberreqstringUK company numberTry it
Response
get_officersrequired: company_numberDirectors / secretaries for a UK company.
Parameters
NameTypeDescription
company_numberreqstringUK company numberitems_per_pageoptnumber1-100start_indexoptnumberPagination offsetregister_typeoptstringdirectors | secretaries | llp-membersTry it
Response
get_filingsrequired: company_numberFiling history for a UK company.
Parameters
NameTypeDescription
company_numberreqstringUK company numbercategoryoptstringOptional filter (accounts, confirmation-statement, officers, etc.)items_per_pageoptnumber1-100start_indexoptnumberPagination offsetTry it
Response
get_persons_with_significant_controlrequired: company_numberPSC records for a UK company (beneficial owners).
Parameters
NameTypeDescription
company_numberreqstringUK company numberitems_per_pageoptnumber1-100start_indexoptnumberPagination offsetTry it
Response
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/companies-house/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/companies-house/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search_companies","arguments":{"query": "hello"}}}'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("search_companies", {"query":"example"});ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("uk statutory company registry — search, officers, filings, persons with significant control");