Skip to main content
Glama

requestTest

Process my request to test a page about which no report is available yet.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
URLYes12- to 300-character URL of the page, including the https:// scheme and any query
reasonYes20- to 100-character reason why the page should be tested
descriptionYes10- to 100-character description of the page conforming to the naming convention used in the listReports output

Output Schema

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

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A3.6/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=false, so the description correctly aligns with a non-read operation. It adds that the target must be a page with no report yet, but does not disclose whether the request is queued, how long testing takes, or what immediate effect the call has. The presence of an output schema partially compensates for this.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence with no filler and the key condition is front-loaded. The verb 'process my request' is slightly weak, but the sentence is compact and easy to parse.

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 three-parameter tool with 100% schema coverage, annotations, and an output schema, the description is sufficient for basic correct invocation. It clearly communicates the no-report-yet precondition, though it does not address edge cases such as duplicate requests or interactions with requestRetest.

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%, and each parameter already has a meaningful description with length constraints. The tool description itself adds no additional parameter semantics beyond what the schema provides, so the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a clear action ('process my request to test a page') and an important scope condition ('about which no report is available yet'). It implicitly differentiates from requestRetest by requiring no existing report, but the verb 'process' is less specific than 'submit' or 'create', and no sibling tool is explicitly mentioned.

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?

The phrase 'about which no report is available yet' gives an explicit precondition for using this tool rather than requestRetest or getReport. It does not spell out exclusions or name alternatives, but the usage context is clear enough for an agent to make a reasonable choice.

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