# Treatment Room Setup Timer AI Agent Connect

> Precision scheduling for spa room turnover and operational workflows.

## Overview
- **Category:** productivity
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_91Wk7nU7zh34ZbMTynO1WoHIAxzaYNDYultDIrSu/ai-agent-connect
- **Tags:** spa, scheduling, workflow, hygiene, operations

## Description

This MCP server provides specialized tools for spa and wellness professionals to manage the critical window between client services. It calculates total turnover time, generates sanitary cleaning checklists, and determines the optimal sequence of tasks to ensure hygiene standards are met. By using `calculate_turnover_duration`, managers can accurately predict transition times, while `plan_setup_sequence` ensures that all sanitation steps are completed before restocking begins. It also includes `evaluate_buffer_adequacy` to verify if scheduled gaps between appointments are sufficient to prevent service delays.

## Tools

### calculate_turnover
Calculates the total estimated time needed to transition the room

### evaluate_buffer_adequacy
Checks if the planned turnover time allows for a safe margin of error

### generate_cleaning_checklist
Provides a specific list of sanitary tasks based on the previous service

### plan_setup_sequence
Determines the chronological order of tasks to ensure hygiene and efficiency

## Prompt Examples

**Prompt:** 
```
How much time do I need to turn over the room after a massage if I need a high level of cleaning and standard restocking?
```

**Response:** 
```
The total estimated turnover time is 45 minutes, consisting of 30 minutes for cleaning, 10 minutes for restocking, and a 5-minute buffer.
```

**Prompt:** 
```
Give me a cleaning checklist for a high intensity sanitation after a facial.
```

**Response:** 
```
The required tasks are: disinfect all contact surfaces, sanitize treatment bed, replace all linens, and clean all small tools.
```

**Prompt:** 
```
I have a 30 minute gap between clients, but the turnover calculation says I need 35 minutes. Is this safe?
```

**Response:** 
```
No, this is not safe. You have a negative margin of -5 minutes, meaning the scheduled gap is insufficient for the required turnover.
```

## Frequently Asked Questions

**How does the tool ensure hygiene standards?**
The tool uses `plan_setup_sequence` to strictly enforce that all cleaning and sanitation tasks are performed before any restocking or setup tasks occur, preventing cross-contamination.

**Can I check if my schedule has enough buffer time?**
Yes, you can use `evaluate_buffer_adequacy` to compare your calculated turnover time against the actual gap between appointments to ensure a safe margin.

**What inputs are needed for turnover calculation?**
To use `calculate_turnover_duration`, you need to provide the previous service type, the next service type, the cleaning intensity, and the restock requirement.
