Skip to main content
Glama

find_evidence

Retrieve ranked supporting evidence for any claim while staying within a strict token budget.

Instructions

Retrieve compact, ranked supporting evidence for a claim under a strict token budget.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
claimYesThe claim or subject to find evidence for
max_tokensNoMaximum token budget (default 1500; allows 500, 1000, 1500, 3000, 5000)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.7/5.0
Behavior3/5

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

Annotations are absent, so the description carries full behavioral burden. It does disclose that output is compact, ranked, and budget-limited, but it does not explain ranking criteria, possible failure modes, or what form the evidence takes. This is more than a tautology but still leaves meaningful behavior undocumented.

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 a single tightly written sentence. It front-loads the action and outcome and contains no filler or redundant restatement of the tool name.

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

Completeness3/5

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

For a simple two-parameter tool, the description captures the core contract, but with no output schema it leaves the exact return shape and ranking semantics underspecified. Given siblings like get_evidence_packet, more explicit output expectations would improve completeness.

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 baseline is 3. The prose reinforces both 'claim' and 'token budget' but adds no new parameter semantics beyond what the schema already states, such as allowed max_tokens values.

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 ('Retrieve'), a resource ('supporting evidence for a claim'), and the output style ('compact, ranked'). The 'strict token budget' further distinguishes it from sibling tools like get_evidence_packet or verify_claim, making the tool's role clear.

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

Usage Guidelines3/5

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

The phrase 'under a strict token budget' implies a budget-constrained evidence-retrieval use case, but there is no explicit guidance on when to prefer this over siblings such as verify_claim or get_evidence_packet. No alternatives or exclusions are mentioned.

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