trace_ownership_path
Walk ownership upward from a root entity to the ultimate beneficial owner(s).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| root | Yes | ||
| max_depth | No |
Walk ownership upward from a root entity to the ultimate beneficial owner(s).
| Name | Required | Description | Default |
|---|---|---|---|
| root | Yes | ||
| max_depth | No |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations (readOnlyHint=true, destructiveHint=false, etc.) already establish this is a safe read operation, and the description is fully consistent with them—no contradiction exists. The description adds a modest behavioral detail by clarifying the traversal direction (upward) and the terminal concept ('ultimate beneficial owner(s)'), which goes beyond the tin name. However, it does not disclose behavior around cycles, max_depth enforcement, or how incomplete ownership stakes are handled, so it adds limited incremental context for a graph walk tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
One sentence of roughly 15 words, front-loaded with the verb, and every word earns its place by communicating direction (upward), starting point (root entity), and endpoint (beneficial owner(s)). Zero fluff or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a relatively simple 2-parameter flat tool with no nested objects and no output schema, the description covers the essential mechanism adequately, and the rubric notes the description needn't explain return values without an output schema. However, given the graph-traversal nature of the tool and the existence of similarly-shaped siblings (graph_path, graph_neighbourhood), the description misses key operational details like default depth, cycle handling, and the threshold for 'beneficial owner'—details that would materially affect agent behavior.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description was expected to carry the full explanatory burden for the parameters, but it only loosely echoes the word 'root' from the schema without explaining what a valid root value is or what the 'max_depth' parameter does, its units, or default. A tool that includes both an unbounded 'root' and an optional numeric 'max_depth' leaves real ambiguity (e.g., direction of depth, default behavior when absent) that the description fails to resolve. The description adds almost no parameter-level meaning beyond the schema's bare type declarations.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('walk') plus a clear resource ('ownership... upward from a root entity to the ultimate beneficial owner(s)') with a directional scope (upward) and a defined terminus (beneficial owners). This is a clear statement of purpose that incidentally differentiates the tool from the sibling `graph_path` (generic pathfinding) and `get_entity` (single-entity lookup), though it doesn't name alternatives. The language is specific enough to avoid confusion with most siblings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit when-to-use guidance, exclusions, or named alternatives are provided despite a rich sibling context (graph_path, graph_neighbourhood, find_similar) where such guidance would be valuable. The 'walk upward' phrasing weakly implies a use case (finding ultimate corporate ownership), but there is no statement about when NOT to use this tool or which sibling would be a better fit, leaving the agent to guess between this and graph_path.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Most tools have distinct purposes (search, lookup, get details, graph traversal, coverage maps, payment). Some overlap exists between lookup_company and lookup_by_identifier (both resolve identifiers, though one is UK-specific), and between get_entity vs get_company_details, but descriptions clarify distinctions. find_similar and semantic_search both find similar entities but different mechanisms.
Uses a mix of verb_noun and noun_phrases: buy_dossier, claim_dossier, check_offshore_exposure, find_similar, get_pricing, get_pulse, graph_neighbourhood, list_asset_coverage, lookup_by_identifier, search_entities, trace_ownership_path. While most use underscores and verbs like get/lookup/search/list, there are inconsistencies like 'graph_neighbourhood' (noun start) vs 'trace_ownership_path' (verb start). Overall readable but not perfectly consistent.
23 tools is at the high end but justifiable for a comprehensive intelligence server covering search, lookup, graph, coverage, payments, and entity details. 'buy_dossier' is considered one of the tools and adds bulk but not excessive. It is appropriate for the scope.
Covers a wide range: search (search_entities, search_companies, semantic_search), identifier lookup (lookup_by_identifier, lookup_company), entity details (get_entity, get_company_details, get_financials), graph (graph_neighbourhood, graph_path, trace_ownership_path), coverage maps (list_jurisdictions, list_asset_coverage), sanctions (get_sanctions, check_offshore_exposure), plus payment flow (get_pricing, buy_dossier, claim_dossier, get_payment_link). Missing perhaps a 'get_relationships' separate tool but get_entity includes direct relationships. Also no explicit 'list_entities' but search covers it. Minor gaps like no bulk operations besides resolve.