# Noise Impact Assessment AI Agent Connect

> Assess noise impact from oil and gas operations using sound propagation modeling.

## Overview
- **Category:** engineering
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_XWHFHrQhpH2DcD2SSKnCXR9fKqQh14WGijC7MOJ5/ai-agent-connect
- **Tags:** noise, oil-and-gas, acoustic, environmental-impact, safety

## Description

This MCP server provides specialized tools for analyzing noise pollution in industrial oil and gas environments. It allows users to retrieve standardized noise profiles via `get_source_profiles`, predict noise levels at specific locations using `calculate_receptor_noise`, and determine total exposure with `aggregate_cumulative_impact`. Finally, it identifies necessary safety actions through `evaluate_mitigation_needs` by comparing results against regulatory limits for residential, industrial, or wildlife receptors.

## Tools

### aggregate_cumulative_impact
Determine the total noise exposure when multiple sources contribute to the same receptor

### calculate_receptor_noise
Predict the specific noise level at a given location based on source and environment

### evaluate_mitigation_needs
Identify if the noise impact exceeds safety or regulatory limits and suggest necessary actions

### get_source_profiles
Retrieve standardized noise emission data for specific oil and gas equipment

## Prompt Examples

**Prompt:** 
```
What is the noise level of a compressor at 50 meters with soft ground?
```

**Response:** 
```
The predicted noise level at 50 meters is 62.4 dB.
```

**Prompt:** 
```
Calculate the total noise if I have three sources at 65, 70, and 68 dB.
```

**Response:** 
```
The cumulative noise level is 72.1 dB.
```

**Prompt:** 
```
Is a noise level of 75 dB compliant for a residential area with a 70 dB limit?
```

**Response:** 
```
No, the noise level exceeds the limit by 5 dB. Suggested actions: install acoustic barriers or reduce operating hours.
```

## Frequently Asked Questions

**How does the tool calculate noise at a distance?**
The `calculate_receptor_noise` tool uses geometric spreading and ground absorption factors to predict how sound levels diminish over distance.

**Can I combine noise from multiple machines?**
Yes, use `aggregate_cumulative_impact` to calculate the total logarithmic decibel level from multiple individual noise sources.

**How are mitigation strategies determined?**
The `evaluate_mitigation_needs` tool compares the calculated noise against regulatory limits for the specific receptor type and suggests actions like installing acoustic barriers.
