Skip to main content
Glama

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

submit_enquiry

Submits an enquiry to Oklahoma Foundation Repair Cost — 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 local foundation repair contractors, who'll quote 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 local foundation repair contractors, who'll quote 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 the full behavioral burden and does so thoroughly. It discloses validation, token issuance, the need for the person's agreement, email delivery, the click-before-provider-visible condition, and the exact consent wording. No assumptions are left hidden.

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 long but every sentence earns its place: the non-purchase disclaimer, the two-step flow, the token handoff, and the consent text are all essential. The 'Step 1:' and 'Step 2:' structure makes the sequence easy to follow without waste.

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 complex two-step submission tool, the description covers the full lifecycle: prerequisites (answers from enquiry_fields), validation, token return, user approval, final submission, email notification, and the provider-visible condition. The absence of an output schema is compensated by the description stating what step 1 returns and what step 2 accomplishes.

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 schema already documents all three parameters with 100% coverage, so the baseline is 3. The description adds operational meaning beyond this by mapping parameters to the two steps (consent=true in both calls, confirmation only in step 2) and defining exactly what the answers object should contain (keyed by field key from enquiry_fields). This extra context lifts it to a 4.

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 opens with the specific action 'Submits an enquiry to Oklahoma Foundation Repair Cost' and immediately disambiguates from purchases or quotes. It also references enquiry_fields as the source of field keys and sibling tools with different purposes (describe, get fields), making it distinct.

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?

Provides an explicit two-step protocol: call with answers and consent=true, show the summary and consent line, then call again with the same answers, consent=true, and the confirmation token only if the person agrees. It also clarifies this is not a purchase and that the recipient must click an emailed link before providers see the enquiry, guiding when and how to invoke the tool.

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

A4.4/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: one explains the service, one describes the fields, and one submits the enquiry. There is no overlap or ambiguity between the three tools.

Naming Consistency4/5

All names use snake_case and are clearly related to the enquiry domain, but the pattern is slightly inconsistent: "enquiry_describe" and "enquiry_fields" lead with the noun while "submit_enquiry" is a conventional verb_noun. This is a minor deviation rather than a confusing mix.

Tool Count5/5

Three tools is well-scoped for a single-purpose enquiry submission flow. Each tool covers a needed stage without redundancy or unnecessary surface area.

Completeness5/5

The set fully covers the enquiry workflow: orientation, field schema, and a two-step submission that includes confirmation token handling. There are no obvious dead ends or missing operations within the stated purpose.

Resources