Skip to main content
Glama

Send a quote request

submit_quote_request
DestructiveIdempotent

After the customer explicitly agrees, save their service requirements and contact details and send a notification to the business's configured email or opted-in SMS destination. This requests a business response, not a price commitment, booking or payment. Use context from request_service. Reuse the same idempotency_key AND details to check an uncertain submission; never automatically start a new request. Exclude medical, payment-card and authentication information.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
consentYesTrue only after the customer explicitly agrees to send these contact details and this request to the named business
detailsYesBrief service requirements; exclude sensitive medical, financial and authentication information
serviceYesService the customer wants a quote for
business_idYesThe exact provider_business_id (public business slug) returned by request_service
contact_nameNo
contact_emailNo
contact_phoneNo
context_tokenYesOpaque business context from request_service; pass unchanged
idempotency_keyYesA UUID for this request; reuse unchanged when checking or retrying an uncertain submission

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
codeNo
statusYes
messageYes
replayedNo
request_idYes

Schema Changelog

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

  1. Added

TDQS

A4.7/5.0
Behavior5/5

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

Beyond the annotations, the description discloses idempotency behavior: reuse the same idempotency_key AND details to check an uncertain submission, and never automatically start a new request. It also warns to exclude sensitive medical, payment-card, and authentication information, and clarifies that this action does not create a booking, payment, or price commitment.

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 compact and front-loaded: it starts with the consent condition and core action, then adds exclusions, idempotency guidance, and sensitive-data warnings. Every sentence contributes meaningful behavioral or usage information with no redundancy.

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 9-parameter mutation tool with an output schema and many siblings, the description covers the essential context: when consent is required, where the context token comes from, how to handle idempotent retries, what the tool does not do, and what content must be excluded. Return values need not be described because an output schema exists.

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 67%, so the schema already documents most parameters. The description adds useful operational semantics: context_token should come from request_service, idempotency_key must be reused with the same details when checking an uncertain submission, and details must exclude sensitive information. It treats contact_name, contact_email, and contact_phone collectively as 'contact details' but does not individually explain each, so it does not fully compensate for the missing schema descriptions.

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 clearly identifies the operation: save the customer's service requirements and contact details, then send a notification to the business. It explicitly scopes the action as requesting a business response rather than a price commitment, booking, or payment, which distinguishes it from siblings like get_quote and confirm_booking.

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?

It gives a clear precondition ('After the customer explicitly agrees'), a prerequisite source ('Use context from request_service'), and explicit exclusions ('not a price commitment, booking or payment'). It does not name sibling alternatives directly, but the when-not conditions are specific enough to guide selection.

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
Disambiguation3/5

The booking and quote lifecycles are generally separated well, but some boundaries are blurry: query_business_agent explicitly covers 'policies,' overlapping with get_cancellation_policy, and initiate_handoff/request_callback both route notifications through lead routing. The detailed descriptions help, but an agent could still misselect between those pairs.

Naming Consistency5/5

Every tool uses snake_case with an imperative verb + noun object pattern (get_*, list_*, request_*, reserve_*, confirm_*, submit_*, etc.). The few longer names like get_payment_handoff_url and subscribe_to_updates still follow the same predictable style.

Tool Count4/5

Fifteen tools is at the high end of the typical range, but each maps to a distinct workflow step across discovery, quotes, booking, handoff, and subscription. It feels slightly heavy because several notification/contact tools could potentially be consolidated, but it is not bloated.

Completeness3/5

The quote and booking flows are well covered from search through reserve and confirm, but there is no way to cancel or reschedule a booking, and no direct booking-status lookup beyond repeating confirm_booking. Discovery, payment handoff, and subscription flows are otherwise reasonably complete.