evidence_benchmarks
List public benchmark definitions and recent runs.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No |
List public benchmark definitions and recent runs.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare the safety profile (readOnlyHint=true, idempotentHint=true, destructiveHint=false, openWorldHint=false), so the bar is lower. The description usefully adds that results combine benchmark definitions with recent runs and are restricted to public ones, but it does not cover result size, ordering, or truncation behavior for the run list.
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?
A single front-loaded sentence with no filler or redundancy. It is efficient, though its brevity is partly the source of the coverage gaps elsewhere.
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 simple, read-only listing tool with annotations covering safety and no output schema, the description is minimally adequate: the two result types are named. It falls short on the one parameter's semantics and on any hint about volume or pagination.
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% for the single `limit` parameter, and the description says nothing about it — no default (20), no range (1-50), and no indication of whether it bounds definitions, runs, or both. With the schema providing no prose, the description fails to compensate.
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 pairs a specific verb ("List") with a specific resource ("public benchmark definitions and recent runs") and scopes it to public benchmarks. It does not, however, distinguish this tool from adjacent read-only siblings such as evidence_datasets or evidence_sources, so an agent must infer the boundary.
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?
There is no statement of when to use this tool, no prerequisites, and no mention of alternatives among the many read-oriented siblings. The agent is left to guess whether this is the canonical source for benchmark data.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.