# Self-Rescue Distance AI Agent Connect

> Assess kiteboarding self-rescue capability and drift risk.

## Overview
- **Category:** maritime
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_bk7EWkDNqjIW051DbB4yHkRMyTuUKKgIW9P8K672/ai-agent-connect
- **Tags:** kiteboarding, survival, maritime-safety, drift-analysis, emergency-response

## Description

This MCP server provides critical safety assessments for kiteboarders facing equipment failure. It calculates the feasibility of reaching shore by analyzing wind speed, current speed, and distance to land. Using `calculate_rescue_feasibility`, riders can determine if they can safely paddle to safety. The tool also includes `analyze_drift_risk` to predict movement if stationary, `evaluate_fitness_impact` to scale energy needs, and `get_safety_protocol` to provide immediate emergency instructions.

## Tools

### get_safety_protocol
Provides standardized emergency procedures based on the calculated rescue outcome

### analyze_drift_risk
Predicts how much a rider will be pushed away from their target if they remain stationary

### calculate_rescue_feasibility
Determines if a rider can safely reach the shore based on current environmental conditions and personal capability

### evaluate_fitness_impact
Adjusts the estimated effort required based on the rider's specific fitness level

## Prompt Examples

**Prompt:** 
```
I am 500 meters from shore, wind is 10 m/s, and current is 0.5 m/s. My fitness is medium and my kite is functional. Can I make it?
```

**Response:** 
```
Yes, you can safely reach the shore. Estimated time is approximately 12 minutes.
```

**Prompt:** 
```
How much will I drift if I stay still with a 15 m/s wind and 1 m/s current and a functional kite?
```

**Response:** 
```
You are estimated to drift 150 meters offshore.
```

**Prompt:** 
```
I'm 800 meters out, wind is 12 m/s, current is 1.5 m/s, fitness is low, and my kite is damaged. What should I do?
```

**Response:** 
```
It is not safe to attempt paddling. Deploy flotation and wait for rescue.
```

## Frequently Asked Questions

**How accurate is the rescue feasibility calculation?**
The calculation uses a physics-based model factoring in wind, current, and rider fitness to estimate if you can reach shore using `calculate_rescue_feasibility`.

**Can I use this to predict where I will drift?**
Yes, you can use `analyze_drift_risk` to estimate the distance and direction you might be pushed by wind and current.

**What happens if my kite is damaged?**
The tools account for `kiteCondition`. A damaged kite affects both buoyancy and how much the wind pulls you, which is reflected in the safety protocols.
