npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

companies-house-mcp

v3.2.0

Published

MCP server for the UK Companies House API — connects Claude, Cursor, Zed, and other AI tools to live company data

Downloads

687

Readme

Companies House MCP

npm version npm downloads License: MIT Node 22+

MCP server for the UK Companies House API. Connects Claude, Cursor, Zed, and other AI tools to live UK company data — 17 tools for search, profiles, officers, filings, ownership, charges, insolvency, and due diligence.

From v3.0.0 this package is a thin wrapper over companies-house-cli. Existing npx -y companies-house-mcp configs work unchanged.

Full docs: companies-house.uk

Get an API key

Register at developer.company-information.service.gov.uk — free, takes about 30 seconds.

Setup

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "companies-house": {
      "command": "npx",
      "args": ["-y", "companies-house-mcp"],
      "env": {
        "COMPANIES_HOUSE_API_KEY": "your-key-here"
      }
    }
  }
}
claude mcp add --transport stdio --env COMPANIES_HOUSE_API_KEY=your-key-here companies-house -- npx -y companies-house-mcp

Or add to ~/.claude.json manually:

{
  "mcpServers": {
    "companies-house": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "companies-house-mcp"],
      "env": {
        "COMPANIES_HOUSE_API_KEY": "your-key-here"
      }
    }
  }
}

Add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "companies-house": {
      "command": "npx",
      "args": ["-y", "companies-house-mcp"],
      "env": {
        "COMPANIES_HOUSE_API_KEY": "your-key-here"
      }
    }
  }
}

Add to ~/.config/zed/settings.json:

{
  "context_servers": {
    "companies-house": {
      "source": "custom",
      "command": "npx",
      "args": ["-y", "companies-house-mcp"],
      "env": {
        "COMPANIES_HOUSE_API_KEY": "your-key-here"
      }
    }
  }
}

Tools

Search

  • search_companies — search UK companies by name, status, type, SIC code, or location
  • search_officers — search for company officers by name

Company data

  • get_company_profile — status, registered addresses, SIC codes, accounts and confirmation statement dates
  • get_officers — current and resigned directors, secretaries, and other officers
  • get_appointments — all appointments held by a specific officer across all companies
  • get_ownership — persons with significant control (PSCs) and corporate ownership
  • get_filings — filing history with document metadata and download links
  • get_filing_document — retrieve a specific filing document
  • get_charges — charges and mortgages registered against the company
  • get_insolvency — insolvency proceedings, liquidations, and administrations
  • get_company_registers — statutory registers (members, directors, secretaries)

Composite — combine multiple API calls into a single response

  • company_report — full overview: profile, officers, ownership, charges, filings, and insolvency
  • due_diligence_check — automated red-flag scan with HIGH/MEDIUM/LOW severity ratings
  • officer_network — map a director's connections across all associated UK companies

Extended

  • get_exemptions — disclosure exemptions
  • get_uk_establishments — UK establishments of overseas companies
  • get_officer_disqualifications — disqualification orders against an officer

Every tool returns formatted text for humans and structured JSON for agents. Full parameter reference at companies-house.uk/tools.

What you can ask

Once connected, ask naturally:

  • "Look up Tesco on Companies House"
  • "Who are the directors of Anthropic Limited?"
  • "Run a due diligence check on company 14604577"
  • "Show me the filing history for BrewDog"
  • "What other companies is this director involved with?"
  • "Does this company have any outstanding charges?"
  • "Map the ownership structure of this holding company"
  • "Are there any insolvency proceedings against this company?"

CLI

For terminal access without an AI assistant, install companies-house-cli. See companies-house.uk/cli for the full reference.

npm install -g companies-house-cli
ch search "Anthropic"
ch report 14604577

Disclaimer

Not affiliated with or endorsed by Companies House or the UK Government. Uses the publicly available Companies House API.

Licence

MIT