# Tanker Spill Response Modeling AI Agent Connect

> Models oil spill trajectory, weathering, and shoreline impact.

## Overview
- **Category:** environmental-science
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_1tq55W1RUX21IA2dmOoQi1yCgJLm0LhCh3qzLuvf/ai-agent-connect
- **Tags:** oil-spill, trajectory, weathering, environmental-modeling, maritime-safety

## Description

This MCP server provides specialized tools for modeling the movement and environmental fate of oil spills. It allows AI agents to predict the path of a spill using `get_spill_trajectory`, determine the physical state of the oil through `calculate_weathering_state`, estimate when oil will reach land with `predict_shoreline_impact`, and evaluate environmental threats using `get_spill_risk_assessment`.

## Tools

### calculate_weathering_state
Determines the physical state and remaining volume of the oil at a specific time

### get_spill_risk_assessment
Provides a high-level summary of the environmental threat based on the current spill status

### get_spill_trajectory
Predicts the movement path of the oil slick over a specific duration

### predict_shoreline_impact
Estimates when and where the oil will strike a coastline

## Prompt Examples

**Prompt:** 
```
Predict the movement of a 500 cubic meter oil spill starting at latitude -34.0 and longitude 18.0, with wind at 5 m/s at 90 degrees, current at 0.5 m/s at 180 degrees, for 24 hours.
```

**Response:** 
```
The oil spill is predicted to move south-southeast, covering a total distance of 12.4 kilometers over 24 hours, with the center of mass reaching coordinates -34.12, 18.05.
```

**Prompt:** 
```
What is the weathering state of 450 cubic meters of oil after 48 hours, given an oil density of 850, sea temperature of 15C, air temperature of 20C, and wave height of 2 meters?
```

**Response:** 
```
After 48 hours, the remaining volume is 385 cubic meters, with an emulsification percentage of 12% and a viscosity increase factor of 1.15.
```

**Prompt:** 
```
Assess the risk for a spill with 200 cubic meters remaining, located 5 kilometers from the coast, which is currently emulsified.
```

**Response:** 
```
The risk level is High, with the primary concern being the emulsification state which complicates cleanup efforts near the coastline.
```

## Frequently Asked Questions

**How can I predict where the oil will move?**
You can use the `get_spill_trajectory` tool by providing the initial spill volume, coordinates, wind and current conditions, and the duration of the simulation.

**Can I determine if the oil will hit the coast?**
Yes, the `predict_shoreline_impact` tool uses a previously calculated trajectory to estimate if and when the oil will contact a defined shoreline boundary.

**How is the environmental risk calculated?**
The `get_spill_risk_assessment` tool evaluates risk based on the remaining oil volume, the distance to the nearest coast, and the current emulsification state of the oil.
