Query enriched UK Companies House data, including financials, ownership, directors, networks, and ECCTA verification status.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent โ or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag โ we're steadily working through the catalog.
๐ก Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Inspect callable tools, capabilities, and parameters exposed to AI agents by Registrum MCP.
UK company data in your AI agent โ without building Companies House plumbing.
No Companies House developer account, no rate-limit handling, no iXBRL parsing. Works in Claude Desktop, Claude Code, Cursor, and any MCP-compatible client.
Point your client at the hosted endpoint and every tool answers with real data:
That is the whole setup. Ask it "Who ultimately owns BrewDog?" and it will trace the ownership chain to the named individuals who hold control.
One thing worth knowing before you test it on a household name: companies listed
on a regulated market โ Tesco, Rolls-Royce, most of the FTSE โ are exempt from
the PSC regime, so their ownership chain is legitimately empty and
get_psc_chain says so rather than inventing a tree. Ownership questions are
interesting on private companies, which is where the register actually records
who is behind them.
The free anonymous tier is generous on the everyday tools and deliberately small on the expensive ones โ a couple of ownership-chain traces and financial statements per day, which is enough to see exactly what comes back before you decide anything. When you reach a cap, the tool tells you so and points at a free key; nothing silently degrades.
Companies House publishes the raw register for free, and you can absolutely call it yourself. What you then own is the plumbing:
| Doing it yourself | With Registrum |
|---|---|
| Register for a CH developer key, manage OAuth | Nothing, or one REGISTRUM_API_KEY |
| 600 requests/5min, and you handle the 429s | Server-side throttling on a higher negotiated budget |
| Accounts arrive as iXBRL documents you must parse | get_financials returns turnover, net assets, profit/loss as numbers |
| PSC control types are raw codes | Decoded to plain English |
| Ownership chains: recurse yourself, handle cycles | get_psc_chain returns the resolved tree with termination reasons |
| Director networks: N+1 queries across appointments | get_network traverses to depth 2 |
| Retry, cache, and survive CH outages yourself | 24h/7d caching, circuit breaker, stale-while-revalidate |
Other Companies House MCP servers make you bring your own CH key and hand back the raw response. This one does the enrichment.
Use a key when you want the anonymous caps lifted, or when you would rather run the server locally than call ours.
Claude Desktop โ ~/.claude/claude_desktop_config.json
Cursor โ .cursor/mcp.json (per project) or ~/.cursor/mcp.json (global)
Get a free key โ no card.
| Tool | What you get |
|---|---|
search_company | Find a company by name โ company number |
get_bundle | Profile, compliance, financials, PSCs and directors in one call - start here |
get_company | Profile: status, age, SIC descriptions, overdue flags |
get_financials | Turnover, net assets, profit/loss, employees โ parsed from iXBRL, in GBP |
get_directors | Current board with appointment history across all their companies |
get_psc | Persons with Significant Control, control types in plain English |
get_psc_chain | Ownership traversed to ultimate beneficial owners, with termination reasons |
get_compliance | ECCTA identity-verification status โ who has verified, who is pending, who is overdue |
get_network | Companies connected by shared directors, to depth 2 |
get_bundleMost questions about a company need several of these views at once. get_bundle
returns them in a single request: one call and one credit instead of five,
and one round trip instead of five. Pass include to fetch a subset, or omit it
for all five sections.
Each section carries exactly what its own endpoint returns, because the bundle is composed from those same handlers rather than reimplemented - so plan gates, caching and the ECCTA rules behave identically either way.
A null section is not an error. Financials come back null for a company that has filed no machine-readable accounts, and compliance requires a Pro plan. Only a missing company is an error, and that is a 404. Report a null section as "not available", never as an absence of the underlying fact.
get_complianceThe Economic Crime and Corporate Transparency Act requires every UK director and PSC to verify their identity with Companies House. Enforcement begins 18 November 2026, after which unverified officers can block filings.
The tool returns verified / pending / overdue counts plus each unverified person and their individual deadline. It deliberately distinguishes pending (deadline not yet reached โ not a failure) from overdue (missed). Treating those as the same thing is the single easiest way to report a compliant company as non-compliant.
"Is Tesco PLC compliant with ECCTA director verification, and who still needs to verify?"
"Pull the last filed financials for 00445790 and tell me if turnover grew."
"Who ultimately owns BrewDog? Trace the ownership chain to the individuals."
"Which companies share directors with Barratt Developments?"
"Search for 'Monzo' and show me status, incorporation date and directors."
The anonymous endpoint needs no account at all. A free key raises the caps, and paid tiers add volume, PSC chain traversal and the ECCTA compliance endpoint.
Prices and quotas are served live from GET /v1/plans โ
that endpoint is the source of truth, so this README does not duplicate the
numbers and cannot go stale against them. Human-readable version at
registrum.co.uk.
00445790, SC000268.User-Agent: @registrum/mcp/<version> so we can see
which features developers actually use. No telemetry runs on your machine.Factual signals from GitHub, npm, and our automated checks โ not a rating.
No reviews yet โ be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/vdmeu-registrum-mcp)<a href="https://allmcps.com/mcp/vdmeu-registrum-mcp"><img src="https://allmcps.com/api/badge/vdmeu-registrum-mcp?style=directory" alt="Registrum MCP on AllMCPs" /></a>