Skip to main content
Glama
EdwardRadford

companies-house-mcp

search_companies

Read-onlyIdempotent

Search the UK Companies House register by company name to retrieve company numbers, covering live and dissolved firms. Use the returned company number with other tools for further details.

Instructions

Find companies on the UK register by name, returning their company numbers.

Covers live and dissolved companies alike, ranked by relevance; check status before assuming a hit is trading. Use the returned company_number with every other tool. It searches company names only, so it cannot find a company from a director's name.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoResults per page.
queryYesCompany name or part of it. Not a person's name.
start_indexNoOffset for paging. Use next_start_index from a previous result.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryYes
resultsYes
total_resultsYesMatches on the whole register, not just this page.
next_start_indexNoPass this as start_index to get the next page. Null when there are no more results.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds useful behavioral context: it covers live and dissolved companies, ranks by relevance, and warns to check `status` before assuming a hit is trading. This goes beyond the annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three sentences, each earning its place: what it does, what to watch out for, and how to use the result. It is front-loaded with the core purpose and scannable.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description is complete for a read-only search tool. It covers scope, limitations, and next steps. The output schema exists, so return values are documented. The only minor gap is that it doesn't mention pagination behavior explicitly, but the schema's `start_index` and `next_start_index` hint covers that.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all three parameters. The description adds context that `query` is a company name, not a person's name, which reinforces the schema's description. However, it doesn't add much beyond that, so a baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('Find'), a resource ('companies on the UK register'), and the key output ('company numbers'). It also distinguishes itself from siblings by noting it searches only company names, not directors' names, which is a clear differentiator.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly says when to use this tool (to find companies by name) and when not to (cannot find a company from a director's name). It also instructs to use the returned company_number with every other tool, which is valuable routing guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.