Skip to main content
Glama

The questions the enquiry asks

enquiry_fields

Every field of the Revalidation Tracker enquiry: key, label, type, whether required, help text and the allowed options where there are any. Pass answers to submit_enquiry keyed by field key.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

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

  1. First observed

TDQS

A4/5.0
Behavior4/5

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

With no annotations, the description carries the burden of behavioral disclosure. It states exactly what the tool returns (key, label, type, required, help text, options) and that the output is meant to inform submit_enquiry calls. It does not explicitly say it is read-only or non-mutating, but as a zero-parameter metadata retrieval, the behavior is transparent enough.

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 tight sentences. The first front-loads the resource and lists the returned attributes; the second gives a cross-reference to submit_enquiry. No filler or redundancy, and every clause earns its place.

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

Completeness5/5

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

For a simple, zero-parameter tool with no output schema, this description is complete: it tells the agent what fields are returned and how to use them with submit_enquiry. The lack of formatting details is acceptable because the caller only needs the keys and labels. The relationship to sibling tools is sufficiently clear through context.

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?

The tool has zero input parameters, so the baseline of 4 applies. The description adds no input parameter details because none exist, but it usefully references the field key as the output-to-input contract for submit_enquiry, which aids correct downstream invocation.

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 clearly identifies the resource: every field of the Revalidation Tracker enquiry, and enumerates the exact attributes returned (key, label, type, required, help text, allowed options). It distinguishes itself from submit_enquiry by noting that answers should be keyed by field key, and the title adds context. It lacks an explicit verb like 'lists' or 'returns', so it is slightly less direct than ideal.

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 description implies a workflow: call this tool to learn the field keys, then pass answers to submit_enquiry keyed by those keys. It does not explicitly state when to use this vs enquiry_describe or the checker tools, and gives no exclusion criteria. The pointer to submit_enquiry is helpful and provides some situational guidance.

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.9/5.0
Disambiguation5/5

The six tools split cleanly into a decision-guide workflow (start/answer/tree) and an enquiry submission workflow (describe/fields/submit). Each tool has a distinct role: start initializes, answer advances stepwise, tree provides full context, and the enquiry tools cover explanation, schema, and submission. No two tools could plausibly be used for the same action.

Naming Consistency4/5

The checker_ and enquiry_ prefixes create clear, predictable grouping, and every name is snake_case. The main deviation is that some names are action-oriented (start, answer, describe, submit) while tree and fields are data-oriented nouns, so the grammatical pattern is not perfectly uniform.

Tool Count5/5

Six tools is well-scoped for the two distinct workflows the server exposes. There is no redundancy or padding; each tool maps to one clear capability.

Completeness5/5

For the checker, start, answer, and tree cover entry, stepwise navigation, and full reasoning respectively. For the enquiry, describe, fields, and the two-step submit flow provide the explanation, schema, validation, confirmation, and final submission needed for a complete user journey.

Resources