# Occupational Exposure Limit Comparison AI Agent Connect

> Compare chemical concentrations against PEL, TLV, and REL standards.

## Overview
- **Category:** industrial-hygiene
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_Xn5LVnW68yhepi0ZvZ8pdGlR1MnZOgl5lWimUSM3/ai-agent-connect
- **Tags:** safety, osha, compliance, industrial-hygiene, chemical-exposure

## Description

This MCP server provides specialized tools for industrial hygiene and safety professionals to assess chemical exposure. It allows for the evaluation of Time-Weighted Average (TWA) compliance using `evaluate_twa_compliance`, assessment of short-term spikes via `evaluate_stel_compliance`, and detailed safety buffer analysis with `calculate_safety_metrics`. Users can also perform multi-standard comparisons using `compare_regulatory_tiers` to check against OSHA PEL, ACGIH TLV, and NIOSH REL simultaneously.

## Tools

### calculate_safety_metrics
Provides a detailed breakdown of safety buffers and regulatory thresholds

### compare_regulatory_tiers
Compares a single measured concentration against multiple regulatory standards simultaneously

### evaluate_stel_compliance
Evaluates short-term, high-intensity exposure spikes

### evaluate_twa_compliance
Determines if a steady-state exposure over a full shift is within safe limits

## Prompt Examples

**Prompt:** 
```
Is a measured concentration of 0.04 mg/m3 compliant with a PEL of 0.05 mg/m3?
```

**Response:** 
```
Yes, the concentration is compliant with the PEL.
```

**Prompt:** 
```
Check if a 15-minute spike of 5.0 ppm exceeds a STEL of 4.0 ppm.
```

**Response:** 
```
The exposure is non-compliant as it exceeds the STEL.
```

**Prompt:** 
```
Compare 0.1 ppm against a PEL of 0.1, a TLV of 0.08, and a REL of 0.12.
```

**Response:** 
```
The status is: PEL is non-compliant, TLV is non-compliant, and REL is compliant.
```

## Frequently Asked Questions

**How do I check if my exposure is within legal limits?**
You can use `compare_regulatory_tiers` to check your measured concentration against the OSHA PEL, ACGIH TLV, and NIOSH REL all at once.

**Can I evaluate short-term exposure spikes?**
Yes, use the `evaluate_stel_compliance` tool to determine if a 15-minute concentration exceeds the Short-Term Exposure Limit.

**What is the margin of safety?**
The margin of safety is the ratio between the exposure limit and the measured concentration, which can be calculated using `calculate_safety_metrics`.
