# Hazardous Waste Classifier AI Agent Connect

> Classifies waste streams as hazardous or non-hazardous using RCRA and EU standards.

## Overview
- **Category:** compliance
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_FPFutpuE17wlE5JU2Z8ZdfdvAnyDfLGsUwwTsCjl/ai-agent-connect
- **Tags:** waste, rcra, eu-waste, classification, compliance

## Description

This MCP server provides regulatory intelligence to identify hazardous waste. It uses `classify_waste_stream` to evaluate waste composition and physical properties against RCRA (USA) and EU Waste Framework Directive standards. Users can also use `get_hazard_code_details` to retrieve specific regulatory codes and `determine_disposal_protocol` to identify required handling methods for specific facilities.

## Tools

### classify_waste_stream
Performs the primary classification of a waste stream based on its constituents and properties

### determine_disposal_protocol
Identifies the required handling and disposal methods for the classified waste

### get_hazard_code_details
Provides specific regulatory codes and the formal reasoning for a given classification

### validate_composition_thresholds
Checks if specific chemical constituents exceed legal toxicity limits

## Prompt Examples

**Prompt:** 
```
Classify this waste: composition is 5% Lead, 95% Water; region is USA.
```

**Response:** 
```
The waste is classified as Hazardous due to toxicity levels exceeding RCRA limits.
```

**Prompt:** 
```
What is the disposal protocol for hazardous waste at a standard landfill?
```

**Response:** 
```
Disposal at a standard landfill is prohibited for this hazardous waste; specialized treatment or a hazardous waste landfill is required.
```

**Prompt:** 
```
Check if this waste is toxic in the EU: composition is 10% Mercury, 90% Water.
```

**Response:** 
```
Yes, the concentration of Mercury exceeds the legal toxicity threshold for the EU.
```

## Frequently Asked Questions

**Which regulatory frameworks are supported?**
The server supports both RCRA (USA) and the EU Waste Framework Directive.

**How do I find the specific hazard code for my waste?**
After running `classify_waste_stream`, pass the result to `get_hazard_code_details` to obtain the specific regulatory codes and risk levels.

**Can I determine if a landfill is suitable for my waste?**
Yes, use `determine_disposal_protocol` and specify the facility type to see if it is permitted for your specific waste classification.
