# Emergency Planning Zones AI Agent Connect

> Calculates protective action distances and emergency response strategies for chemical hazards.

## Overview
- **Category:** emergency-management
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_wUgXUeTLU4ZAH8mh64f1GckAYXLOwwmeJ64Tg1Mg/ai-agent-connect
- **Tags:** chemical-safety, emergency-response, hazard-assessment, public-safety, risk-management

## Description

This MCP server provides critical tools for chemical facility safety management. It enables AI agents to determine protective action distances using `calculate_protective_distances`, assess human impact via `analyze_population_impact`, select optimal response strategies with `determine_protective_strategy`, and prepare communication protocols through `generate_notification_plan`.

## Tools

### analyze_population_impact
Evaluates how many people are at risk within the calculated hazard zones

### calculate_protective_distances
Determines the specific distances for safety actions based on the severity of the hazard

### determine_protective_strategy
Selects the optimal response (Evacuation vs. Shelter-in-Place) for a specific zone

### generate_notification_plan
Defines what alerts must be sent and to whom based on the threat level

## Prompt Examples

**Prompt:** 
```
Calculate the protective distance for a High severity rapid rupture release.
```

**Response:** 
```
The protective action distance is 5.2 km, with Shelter-in-Place as the primary action.
```

**Prompt:** 
```
What is the best strategy for 5000 people at risk with a response capability of 0.8?
```

**Response:** 
```
The recommended action is Evacuation, with an estimated execution time of 2.5 hours.
```

**Prompt:** 
```
Generate a notification plan for a High severity threat affecting 10000 people where evacuation is required.
```

**Response:** 
```
The notification plan includes SMS, sirens, and radio alerts with a High priority level.
```

## Frequently Asked Questions

**How does the tool determine the safety radius?**
The `calculate_protective_distances` tool determines the radius based on the provided hazard severity and the specific release scenario.

**Can I use this to plan evacuation routes?**
While it doesn't map physical roads, `generate_notification_plan` provides message templates that include evacuation instructions when required.

**What data is needed for population analysis?**
You need to provide the protective action distance and a population density map as a JSON string to `analyze_population_impact`.
