Skip to main content
Glama
florpan
by florpan

find_implementations

Identify the concrete implementations or overrides behind any interface or virtual member, revealing the actual runtime behavior that references alone cannot show.

Instructions

Find the concrete implementations of an interface or abstract member, or the overrides of a virtual one. Answers 'what actually runs when this is called', which references alone cannot tell you.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesInterface or member name
limitNoMax results (default 50)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

A4.2/5.0
Behavior3/5

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

No annotations are present, so the description carries the disclosure burden. It clarifies that results are runtime implementations rather than mere reference locations, but it does not explicitly state read-only behavior, scope limits, or behavior when no implementations exist. 'Find' implies a safe read operation, but that is left implicit.

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?

Two sentences with no filler. The core action and resource are front-loaded, and the second sentence earns its place by distinguishing the tool from reference-based siblings.

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?

For a simple two-parameter read-only tool with no output schema, the description provides enough context about what the results represent and when to use it. The exact return shape is implied rather than stated, but the tool name and description make it reasonably predictable.

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

Parameters4/5

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

Schema coverage is 100% and documents both name and limit. The description adds real meaning to `name` by specifying that it can be an interface, abstract member, or virtual member, and by explaining the nature of the result. It appropriately avoids repeating the limit schema.

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 names a specific verb and resource: finding concrete implementations or overrides. It also differentiates from siblings like find_references with the phrase 'what actually runs when this is called', giving the tool a precise semantic identity.

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

Usage Guidelines4/5

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

It embeds a clear usage trigger: when references alone cannot tell you what actually runs, use this tool. It does not explicitly list exclusions or compare against find_definition, but it provides enough directional guidance to select among the sibling tools.

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