Skip to main content
Glama

The questions the enquiry asks

enquiry_fields

Every field of the Pub Mortgage Calculator 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

A3.9/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden of explaining behavior. It tells the agent what the tool returns (key, label, type, required flag, help text, allowed options) and how the output should be used with submit_enquiry. It does not describe read-only guarantees or error behavior, but for a zero-parameter metadata retrieval tool the disclosure is strong.

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 efficient sentences: the first front-loads the full field-attribute list, and the second immediately tells the agent how to connect the output to the sibling submit_enquiry tool. No filler or repetition of the tool name.

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 simple zero-parameter tool with no output schema, the description explains the return content and its downstream purpose. It does not specify the exact top-level response shape (array vs object), but it provides enough detail for an agent to correctly interpret the fields and use them in submit_enquiry.

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 parameters, so there is no input schema to clarify; the baseline for 0-parameter tools is 4. The description still adds relevant semantic context by explaining that fields have keys and that those keys are the expected keys for submit_enquiry answers.

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 Pub Mortgage Calculator enquiry, and lists the specific attributes exposed. Although it lacks an explicit imperative verb like 'get' or 'list', 'Every field...' makes the retrieval purpose unmistakable and distinguishes it from sibling tools such as submit_enquiry and calculator_describe.

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 second sentence gives practical usage context: pass answers to submit_enquiry keyed by field key. This implies when the tool is relevant, but it does not explicitly state when to choose this tool over enquiry_describe or calculator_describe, nor does it mention any exclusions.

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

Each tool targets a distinct concern: calculate runs the calculator, calculator_describe documents its inputs/outputs, enquiry_describe explains the submission flow, enquiry_fields provides the schema, and submit_enquiry performs the two-step submission. There is no real overlap in purpose despite some similar naming.

Naming Consistency2/5

The naming convention is inconsistent: some tools are verb-first (calculate, submit_enquiry) while others are noun-first (calculator_describe, enquiry_describe, enquiry_fields). The mixed ordering and inconsistent verb/noun placement make the tool names harder to predict.

Tool Count5/5

Five tools is well-scoped for a focused mortgage calculator and enquiry submission server. Each tool fills a necessary role, and there is no bloat or redundancy.

Completeness5/5

The surface covers the full workflow: understanding the calculator, executing it, reading the enquiry process, fetching the required fields, and submitting with two-step consent. There are no obvious missing operations for the stated purpose.

Resources