# Explosion Hazard Analysis AI Agent Connect

> Analyze explosion risks, overpressure, and safe standoff distances for flammable materials.

## Overview
- **Category:** engineering
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_gffVVggR0zb7nB4Y6PdkpjSoGL9SCfUxl7VefTkI/ai-agent-connect
- **Tags:** explosion, flammability, safety-analysis, overpressure, hazard-assessment

## Description

This MCP server provides critical safety analysis for flammable environments. It allows AI agents to evaluate material flammability using `evaluate_material_hazard`, estimate physical impact with `calculate_explosion_impact`, and determine necessary standoff distances via `determine_safe_distances`. It also assesses ignition potential through `assess_ignition_risk` to ensure personnel and infrastructure safety.

## Tools

### assess_ignition_risk
Evaluates if existing ignition sources are sufficient to trigger an explosion

### calculate_explosion_impact
Estimates the physical intensity of an explosion based on the material and its confinement

### determine_safe_distances
Calculates the required standoff distances to protect personnel and infrastructure

### evaluate_material_hazard
Determines the fundamental flammability risk of a specific material

## Prompt Examples

**Prompt:** 
```
Is a 5% concentration of Hydrogen flammable?
```

**Response:** 
```
Yes, Hydrogen is highly flammable at a 5% concentration.
```

**Prompt:** 
```
What is the safe distance for personnel if the overpressure is 5 kPa?
```

**Response:** 
```
The required safe distance for personnel is 150 meters.
```

**Prompt:** 
```
Will a 2kJ spark ignite Methane at 4% concentration?
```

**Response:** 
```
Yes, the available energy exceeds the minimum ignition energy for Methane at this concentration.
```

## Frequently Asked Questions

**How do I calculate the safe distance for a specific explosion?**
First, use `calculate_explosion_impact` to find the peak overpressure, then pass that value to `determine_safe_distances` specifying your target type.

**Can this tool identify if a material is currently in a flammable range?**
Yes, the `evaluate_material_hazard` tool checks the concentration against the Lower and Upper Flammability Limits to determine risk.

**What types of targets can I protect?**
You can calculate distances for personnel, light structures, and heavy structures.
