# Reef Depth Safety AI Agent Connect

> Assess reef navigation safety using tide, wave, and depth data.

## Overview
- **Category:** maritime
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_rFLnsPJhlYCfhi1DoJYyIwt1GUUKcvGARRsKjInz/ai-agent-connect
- **Tags:** ocean, tide, waves, vessel, reef

## Description

This MCP server provides critical tools for maritime safety by analyzing the interaction between lunar tides, charted depths, and wave orbital motion. It allows AI agents to calculate the minimum water depth at wave troughs and determine safe passage windows for vessels. Use `calculate_current_depth` to find total water depth, `calculate_wave_trough_impact` to account for wave energy, and `assess_navigation_safety` to evaluate clearance against vessel draft.

## Tools

### calculate_current_depth
Determines the total water depth available at the reef location

### assess_navigation_safety
Evaluates if a vessel can safely pass over the reef based on its physical requirements

### calculate_wave_trough_impact
Calculates how much the wave energy reduces the available water depth due to orbital motion and trough depth

### determine_safe_passage_window
Identifies if the current tidal state allows for a safe crossing given the wave conditions

## Prompt Examples

**Prompt:** 
```
Is it safe for a boat with a 2m draft to cross a reef with 5m charted depth, 1m tide, and 2m waves?
```

**Response:** 
```
No, the wave trough impact reduces the minimum depth below the required safety margin for a 2m draft.
```

**Prompt:** 
```
What is the total water depth if the chart says 10m and the tide is 1.5m?
```

**Response:** 
```
The total water depth is 11.5 meters.
```

**Prompt:** 
```
Can I pass through the reef now with a 3m draft and 0.5m safety buffer?
```

**Response:** 
```
Yes, the current depth and wave conditions allow for safe passage.
```

## Frequently Asked Questions

**How does this tool account for wave motion?**
The `calculate_wave_trough_impact` tool uses wave height and period to calculate how orbital motion reduces the available water depth at the trough.

**Can I use this to plan a crossing?**
Yes, the `determine_safe_passage_window` tool identifies if current tidal states allow for safe crossing and provides an estimated time window.

**What is the difference between charted depth and total water depth?**
Charted depth is the static seabed measurement, while total water depth is the sum of charted depth and the current tide height, calculated via `calculate_current_depth`.
