GnistAI GnistAI
Log in

Companies House (UK)

UK Companies House — company search, profiles, officers, and filing history.

Overview   |   MCP Docs   |   API Docs   |   OpenAPI   |   Playground   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 5 tools tools 5 5 Business

Data source: UK Companies House

MCP MCP Protocol

Endpoint https://context.gnist.ai/mcp/companies-house/
claude_desktop_config.json
{
  "mcpServers": {
    "gnist-companies-house": {
      "url": "https://context.gnist.ai/mcp/companies-house/",
      "headers": {
        "Gnist-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Shell
curl -X POST "https://context.gnist.ai/mcp/companies-house/" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "search_uk_companies", "arguments": {"query": "example"}}}'

API REST API

API Root https://context.gnist.ai/rest/companies-house/

5 endpoints available:

Shell
curl "https://context.gnist.ai/rest/companies-house/search_uk_companies?query=example" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

resp = httpx.get(
    "https://context.gnist.ai/rest/companies-house/search_uk_companies",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    params={
        "query": "example"
},
)
print(resp.json())

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc companies-house

CLI documentation will be available when the GnistAI SDK is published.

Install
pip install gnistai

Available Tools (5)

search_uk_companies
Search for UK companies by name on Companies House.
ParameterTypeRequiredDescription
querystringrequiredCompany name to search for (e.g. "Tesco", "Barclays", "Rolls-Royce").
limitintegeroptionalNumber of results to return (1–100, default 10). (default: 10)
lookup_uk_company
Look up a UK company by its Companies House company number.
ParameterTypeRequiredDescription
company_numberstringrequiredUK company number (e.g. "00445790" for Tesco PLC, "SC123456" for a Scottish company).
list_uk_company_officers
List directors, secretaries, and other officers for a UK company.
ParameterTypeRequiredDescription
company_numberstringrequiredUK company number.
limitintegeroptionalNumber of officers to return (1–100, default 20). (default: 20)
list_uk_company_filings
List filing history for a UK company.
ParameterTypeRequiredDescription
company_numberstringrequiredUK company number.
categoryanyoptionalFilter by filing category: "accounts", "officers", "address", "annual-return", "capital", "change-of-name", "incorporation", "liquidation", "miscellaneous", "mortgage", "resolution".
limitintegeroptionalNumber of filings to return (1–100, default 20). (default: 20)
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related