Sauna Guide Quotes
Server Details
Prepare and submit private home sauna quote requests only after explicit user approval.
- Status
- Healthy
- Uptime
- 100.0% over 23 days
- Last Tested
- Transport
- Streamable HTTP · MCP 2025-11-25
- URL
TDQS
Scored across 2 tools
prepare_sauna_quote_request is explicitly read-only validation, while submit_sauna_quote_request stores data and sends emails. Their side effects are completely disjoint and the required call order is stated clearly.
Both tool names follow the same snake_case verb_object pattern using the same object, 'sauna_quote_request'. There are no mixed naming conventions or vague verbs.
Two tools is slightly below the typical range, but the server has a narrow, well-defined purpose: validate and submit a quote request. Each tool is necessary, though the surface feels minimal.
The prepare/submit pair covers the core request intake lifecycle with clear guardrails and expected behavior. There is no tool to retrieve, edit, or cancel a submitted request, which is a minor gap if users need to manage existing requests.
Available Tools
2 toolsprepare_sauna_quote_requestPrepare a sauna quote requestARead-onlyInspect
Validate a draft sauna project request and identify missing details. This is read-only: it does not store data, send email, select a provider, or share contact details.
| Name | Required | Description | Default |
|---|---|---|---|
| city | No | City where the sauna will be installed. | |
| No | Email address for personal provider-search updates. | ||
| notes | No | Optional project details such as space, access, foundation, or electrical work. | |
| phone | No | US phone number for questions about the project. | |
| state | No | Two-letter US state code for the project. | |
| budget | No | Expected project budget range in US dollars. | |
| heatType | No | Preferred sauna heat type, or hybrid_or_unsure when not decided. | |
| timeline | No | Expected purchase or installation timeline. | |
| postalCode | Yes | US ZIP code where the sauna will be installed. | |
| contactName | No | Name of the person requesting the quote. | |
| projectType | No | Prebuilt, custom indoor, custom outdoor, or not yet decided. | |
| brandOrModel | No | Optional sauna brand or model already under consideration. | |
| electricalReadiness | No | Optional description of the electrical power currently available at the site. |
Output Schema
| Name | Required | Description |
|---|---|---|
| status | Yes | |
| nextStep | Yes | |
| requestId | Yes | |
| reviewUrl | Yes | |
| missingFields | Yes | |
| readyToSubmit | Yes | |
| newsletterOptIn | Yes | |
| contactDetailsSharedWithProvider | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint=true and destructiveHint=false, and the description adds concrete behavioral context: no data storage, no email sending, no provider selection, no contact sharing. This helps set expectations beyond the annotation flags, though it does not describe the validation output format.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with no wasted words. The core purpose is front-loaded, and the read-only clarification is concise and useful.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with 13 parameters, the description relies appropriately on the rich input schema and output schema. It communicates the essential selection information: validation, missing-detail identification, and no side effects. The only minor gap is not explicitly tying it to the submit workflow, but that is not critically missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so all 13 parameters are already documented in the schema. The description adds no parameter-specific meaning, but given the high schema coverage, the baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description names a specific verb ('validate'), a specific resource ('a draft sauna project request'), and the intended outcome ('identify missing details'). It also clearly distinguishes itself from the submit sibling by stating it is read-only and does not send email or select a provider.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly frames this as a pre-submission validation step and explicitly lists what it does not do, which helps an agent avoid using it for final submission. However, it does not explicitly name submit_sauna_quote_request as the alternative or state 'use before submitting', so the routing guidance is slightly implicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
submit_sauna_quote_requestStart a personal sauna provider searchADestructiveIdempotentInspect
Store a complete sauna project request and send confirmation and internal notification emails. Call only after prepare_sauna_quote_request and after the user explicitly approves submission. This never subscribes the user to a newsletter and never shares contact details with providers.
| Name | Required | Description | Default |
|---|---|---|---|
| city | Yes | City where the sauna will be installed. | |
| Yes | Email address for personal provider-search updates. | ||
| notes | No | Optional project details such as space, access, foundation, or electrical work. | |
| phone | Yes | US phone number for questions about the project. | |
| state | Yes | Two-letter US state code for the project. | |
| budget | Yes | Expected project budget range in US dollars. | |
| heatType | Yes | Preferred sauna heat type, or hybrid_or_unsure when not decided. | |
| timeline | Yes | Expected purchase or installation timeline. | |
| requestId | Yes | The requestId returned by prepare_sauna_quote_request for this project. | |
| postalCode | Yes | US ZIP code where the sauna will be installed. | |
| contactName | Yes | Name of the person requesting the quote. | |
| projectType | Yes | Prebuilt, custom indoor, custom outdoor, or not yet decided. | |
| brandOrModel | No | Optional sauna brand or model already under consideration. | |
| confirmRequest | Yes | Set to true only after the user explicitly approves storing the request and sending confirmation and internal notification emails. | |
| electricalReadiness | No | Optional description of the electrical power currently available at the site. |
Output Schema
| Name | Required | Description |
|---|---|---|
| status | Yes | |
| testMode | Yes | |
| duplicate | Yes | |
| requestId | Yes | |
| updateTiming | Yes | |
| newsletterOptIn | Yes | |
| contactDetailsSharedWithProvider | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds useful side-effect context beyond annotations: it stores a request, sends confirmation/internal emails, and explicitly excludes newsletter subscription and provider contact sharing. However, it does not elaborate on the destructiveHint=true annotation, such as whether the prepared request is consumed or whether submission is irreversible.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences with no filler: function first, then the call conditions, then the privacy guarantees. Every sentence carries distinct useful information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a 15-parameter tool with a full schema and output schema, the description covers the essential call sequence and consent requirement. The only notable gap is the meaning of destructiveHint=true, which is left to the annotation without explanation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, and each parameter (including confirmRequest and requestId) is documented in the schema. The description adds no parameter-level detail, so the baseline of 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description names a specific action ('Store a complete sauna project request') and its side effects ('send confirmation and internal notification emails'). It also situates the tool relative to its only sibling ('after prepare_sauna_quote_request'), so an agent can tell submit from prepare.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit preconditions: call only after prepare_sauna_quote_request and only after the user explicitly approves submission. This clearly tells an agent when the tool is appropriate and when it is premature.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
2 tool updates
- First observed
prepare_sauna_quote_request - First observed
submit_sauna_quote_request
Related MCP Connectors
Analyze leads, draft follow-up campaigns, and launch SMS outreach only with explicit human approval.
Generate branded contractor quotes: hosted approval page, PDF, QR code, and Stripe payment link.
Real-world tasks in Hamburg: quote, check service area, submit an enquiry for human review.
Verified local-business lead lists: quote, sample and order. The person approves every payment.
Related MCP Servers
- AlicenseAqualityCmaintenanceEnables users to drive their own logged-in LinkedIn session through browser automation, with a mandatory preview-and-confirm step before any action is sent.1113 npmMIT

laguna-pools-mcpofficial
AlicenseNot gradedqualityDmaintenanceAI sales manager for composite swimming pools. Recommends pools by plot size & budget, calculates total cost with accessories, provides BIM/CAD files for architects, and connects clients with dealers across 175 Russian citiesMIT- AlicenseNot gradedqualityBmaintenanceEnables smart home automation via MCP with human-in-the-loop approval gates, providing device discovery, state queries, policy checks, and proposal-based execution of actions and scenes that only proceed after explicit user confirmation, with full audit logging.MIT

@getfacade/mcpofficial
AlicenseAqualityBmaintenanceEnables an AI agent to create a building from a photo, generate a facade design, and order a line-by-line cost estimate and documentation album, using country-specific materials and construction norms.2158 npm1MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.