Sauna Guide Quotes
Server Details
Prepare and submit private home sauna quote requests only after explicit user approval.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
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.
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user or an account that owns the GitHub organization, then choose Claim with GitHub.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
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.
Find and submit local 3D print files for manual PrintYourDuck quote review.
Related MCP Servers
- AlicenseAqualityDmaintenanceBooks professional home cleaning services anywhere in metropolitan France end-to-end (coverage check, firm quote, booking creation, URSSAF "avance immédiate" enrollment, status polling). End users pay only 50% via SEPA direct debit thanks to the URSSAF immediate tax credit advance — no card payment required.521MIT
- 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.1129MIT
- FlicenseBqualityNot gradedmaintenanceEnables booking cleaning services in San Francisco by collecting customer details and automatically sending booking requests via email to service partners.1

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
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
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.