# Water Temperature & Comfort AI Agent Connect

> Get wetsuit thickness recommendations and hypothermia risk assessments based on water and air conditions.

## Overview
- **Category:** environment
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_s0LfvmEEiC2PooFPvwgOf474b3U1KkGnzn7nNZii/ai-agent-connect
- **Tags:** wetsuit, hypothermia, water-temperature, thermal-comfort, outdoor-safety

## Description

This MCP server provides essential thermal safety tools for aquatic activities. It uses a thermal comfort model to calculate the ideal wetsuit thickness and determine if supplemental gear like gloves or booties is necessary. Users can also estimate safe session durations to avoid hypothermia and assess the overall thermal stability of their environment using wind-adjusted air temperatures. Key tools include `get_wetsuit_recommendation` for gear selection, `calculate_hypothermia_risk` for safety timing, and `evaluate_thermal_safety_margin` for environmental assessment.

## Tools

### evaluate_thermal_safety_margin
Provides a quick assessment of the "buffer" between current conditions and dangerous thermal levels

### get_gear_tier_info
Provides descriptive information about the types of gear available in the catalog

### get_wetsuit_recommendation
Recommends the ideal wetsuit thickness and supplemental gear for a planned session

### calculate_hypothermia_risk
Determines how long a user can safely remain in the water before reaching a critical hypothermia threshold

## Prompt Examples

**Prompt:** 
```
What wetsuit should I wear for 15°C water, 10°C air, and 15 km/h wind?
```

**Response:** 
```
For those conditions, a 5mm wetsuit is recommended, and you will also need gloves and booties.
```

**Prompt:** 
```
Is it safe to stay in 12°C water for 60 minutes with a 3mm wetsuit?
```

**Response:** 
```
No, staying in 12°C water for 60 minutes with a 3mm wetsuit carries a High risk of hypothermia. The safe duration for that thickness is approximately 35 minutes.
```

**Prompt:** 
```
What is the thermal comfort category for 25°C water and 25°C air?
```

**Response:** 
```
The environment is categorized as Tropical with a high safety margin score.
```

## Frequently Asked Questions

**How does wind speed affect my gear recommendation?**
Wind speed increases heat loss through wind chill. The `get_wetsuit_recommendation` tool accounts for this by adjusting the effective air temperature, which may result in a recommendation for thicker wetsuits or extra gear.

**Can I use this to check if my current wetsuit is safe for a long session?**
Yes. You can use `calculate_hypothermia_risk` by providing the water temperature, your current wetsuit thickness, and your planned session duration to see if you stay within safe limits.

**What is a thermal safety margin?**
It is a numerical assessment of the buffer between current environmental conditions and dangerous thermal levels. You can find this using the `evaluate_thermal_safety_margin` tool.
