Skip to main content
Glama

Submit an ENQUIRY to human providers (two steps; not a purchase)

submit_enquiry

Submits an enquiry to Right to Work Wizard — NOT a purchase, NOT a guaranteed quote. Step 1: call with the answers (keyed by field key from enquiry_fields) and consent=true; it validates and returns a summary, the consent line and a confirmation token — show the person the summary and the consent line. Step 2: only if the person agrees, call again with the same answers, consent=true and the confirmation token; the enquiry is then submitted, and the person receives an email with a link they must click before any provider sees it. Consent means the person has read and agreed to: "Happy for my details to go to a right to work check provider, who'll contact me directly."

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
answersYesthe person's answers, keyed by field key
consentYestrue only when the person has agreed to: Happy for my details to go to a right to work check provider, who'll contact me directly.
confirmationNothe confirmation token from step 1, after the person has approved the summary

Schema Changelog

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

  1. First observed

TDQS

A4.9/5.0
Behavior5/5

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

With no annotations, the description carries full behavioral burden, and it delivers: it reveals that the first call is non-final and returns a summary, consent line, and token; the second call actually submits and triggers an email; and providers see nothing until the person clicks the emailed link. The exact consent wording is included, so the agent knows the required condition precisely.

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 dense but every sentence earns its place: the not-a-purchase warning is front-loaded, the two steps are clearly sequenced, the consent text is quoted exactly, and the email/provider-visibility consequence is included. No filler or repeated schema information.

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 two-step, high-stakes submission tool with no output schema and no annotations, the description covers the full flow, the required consent text, the follow-up token, and the post-submission effect. The agent can execute both steps correctly and knows what to show the user and when to proceed.

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?

Schema coverage is 100%, so the baseline is 3. The description goes beyond the schema by explaining the life cycle of each parameter: answers must use keys from enquiry_fields, consent must reflect agreement to the quoted statement, and confirmation is the token returned in step 1. This adds meaningful operational meaning to the raw schema fields.

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 names a specific verb and resource ('submits an enquiry to Right to Work Wizard') and immediately differentiates it from a purchase or quote. The title reinforces the two-step nature, and the description clearly distinguishes this submission tool from the sibling checker and enquiry-inspection tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Usage is explicitly spelled out as a two-step sequence: call first with answers and consent=true to validate and obtain a confirmation token, then call again only if the person agrees. It also states what the tool is NOT for (not a purchase, not a guaranteed quote) and implies using enquiry_fields to key the answers, giving clear routing 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.7/5.0
Disambiguation5/5

Each tool has a clear role: checker_start and checker_answer drive step-by-step wizard traversal, checker_tree provides the full decision tree, and the enquiry_* tools cover explanation, schema, and submission. No two tools overlap enough to cause selection errors.

Naming Consistency3/5

Names use lowercase snake_case and domain prefixes (checker_/enquiry_), which helps, but the grammatical pattern is mixed: checker_tree and enquiry_fields are noun phrases, checker_start and checker_answer are imperative-ish, enquiry_describe is object-verb, and submit_enquiry flips to verb-object. The grouping is readable but not a consistent verb_noun convention.

Tool Count5/5

Six tools is a well-scoped count for the server's purpose: three for the wizard decision guide and three for the enquiry submission workflow. Each tool has a distinct, non-redundant job.

Completeness5/5

The wizard can be started, advanced, and fully inspected via checker_start, checker_answer, and checker_tree, covering both interactive and end-to-end use. The enquiry workflow has an explainer, field schema, and a two-step submit with consent and confirmation, leaving no obvious dead end.

Resources