# Chemical Exposure Assessment AI Agent Connect

> Quantify worker chemical exposure and assess risk levels.

## Overview
- **Category:** health
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_IWXYDSJvVEermkmdYFppoKQnRq8JInyy8Z8NlNwz/ai-agent-connect
- **Tags:** toxicology, safety, exposure, industrial, occupational-health

## Description

This MCP server provides professional industrial hygiene tools to calculate chemical exposure doses and characterize health risks. Use `calculate_dose` to determine the total absorbed amount based on concentration, duration, and route. You can use `compare_to_oel` to check if exposure exceeds safety limits, `assess_ppe_efficacy` to evaluate protective gear, and `characterize_risk_profile` to get actionable safety recommendations.

## Tools

### assess_ppe_efficacy
Evaluates if the selected PPE is sufficient for a given concentration and route

### calculate_dose
Quantifies the total amount of a chemical a worker has absorbed

### characterize_risk_profile
Provides a high-level summary of the worker's risk level based on combined dose and limit data

### compare_to_oel
Determines if a specific exposure level exceeds regulatory safety limits

## Prompt Examples

**Prompt:** 
```
Calculate the dose for a worker exposed to 5 mg/m3 of a chemical for 8 hours via inhalation.
```

**Response:** 
```
The total calculated dose for this exposure is 40 mg.
```

**Prompt:** 
```
Is a dose of 15 mg/m3 exceeding an OEL of 10 mg/m3?
```

**Response:** 
```
Yes, the hazard quotient is 1.5, which exceeds the established limit.
```

**Prompt:** 
```
Evaluate the suitability of nitrile_gloves for a dermal exposure of 2 mg/cm2.
```

**Response:** 
```
The nitrile_gloves provide a protection factor of 10.0 and are highly suitable for this dermal exposure.
```

## Frequently Asked Questions

**How do I calculate the total dose for a worker?**
Use the `calculate_dose` tool by providing the chemical concentration, exposure duration, and the route of exposure (inhalation, dermal, or ingestion).

**Can I check if my PPE is sufficient?**
Yes, use the `assess_ppe_efficacy` tool to evaluate if a specific type of PPE is suitable for the given concentration and exposure route.

**What is a Hazard Quotient?**
The Hazard Quotient is the ratio of the calculated dose to the Occupational Exposure Limit (OEL), which you can find using `compare_to_oel`.
