Skip to main content
Glama

listDiagnoses

Read-onlyIdempotent

Provide details about one element reported as exhibiting one issue in one report, including the diagnoses provided by rule engines about how the element exhibited the issue.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
jobIDYesJob identifier of the report (example: x9z)
issueIDYesIssue identifier (example: contrastPoor)
timeStampYesTimestamp of the report in YYMMDDTHHmm format (example: 260503T0432)
catalogIndexYesIdentifier of the issue-exhibiting element in the catalog of elements on the page (example: 372)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
tool nameYes
this requestYes
tool collectionYes
response contentYes
response metadataYes
URLs of similar requests for web usersYes

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint=false, so the safety profile is covered. The description adds the resource scope and the fact that diagnoses come from rule engines, but it does not describe output shape, pagination, or other behavioral details. This is similar to the calibrated mid-tier examples: annotations do the heavy lifting, with modest descriptive value added.

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 sentence that immediately states the action, object, and scope without filler or repetition. It earns every word and is well front-loaded.

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 low-complexity read-only tool with full parameter documentation, a rich output schema, and safety annotations, the description is nearly complete. It only lacks an explicit usage boundary against sibling tools, but that gap is covered under usage guidelines rather than this dimension.

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?

The input schema has 100% parameter description coverage, so each of the four required parameters is already documented. The tool description only ties them together conceptually rather than adding new field-level meaning, so the baseline of 3 applies.

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 and object: it provides details about a single element, issue, and report, with the distinguishing content being rule-engine diagnoses. This makes its purpose clear and separates it from siblings like listIssues and listViolators.

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 scoped language ('one element', 'one issue', 'one report') implies when this tool is appropriate, but there is no explicit guidance about when to use it instead of sibling tools. An agent must infer the boundary rather than being told it.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.7/5.0
Disambiguation4/5

Tools are mostly distinct with a clear hierarchy: listReports, getReport for reports; listIssues, listViolators, listDiagnoses for progressively deeper detail. However, getReport may overlap with the other list tools in purpose, and an agent might initially confuse listViolators vs listDiagnoses without careful reading.

Naming Consistency5/5

All tools follow a consistent verb+noun camelCase pattern: get for single resources, list for enumerations, request for actions. The naming convention is uniform and predictable, making it easy to infer tool purpose.

Tool Count5/5

8 tools is well-scoped for a testing/reporting server. Each tool serves a distinct function in the workflow (test request, report retrieval, drill-down into issues, violators, diagnoses, and feature requests) without redundancy or bloat.

Completeness4/5

The tool surface covers the core lifecycle: request test, retest, list reports, inspect full report, and drill into issues, violators, and diagnoses. The only minor gap is a lack of explicit update/delete operations for reports, but this may not be essential for the server's purpose.

Resources