# Runoff Curve Number Calculator AI Agent Connect

> Calculate surface runoff using the SCS Curve Number method.

## Overview
- **Category:** environmental-science
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_YZYZtcpAO1gQ8JO5IA305Zmt15TxJUdwHJVFHjXw/ai-agent-connect
- **Tags:** scs, runoff, hydrology, soil-analysis, rainfall

## Description

This MCP server provides tools to estimate surface runoff using the Soil Conservation Service (SCS) Curve Number method. It allows users to determine base curve numbers based on land use and soil groups, adjust those numbers for different Antecedent Moisture Conditions (AMC), and calculate runoff depth and volume for specific rainfall events. Use `get_base_curve_number` to find the initial CN, `calculate_adjusted_cn` to account for soil wetness, and `calculate_runoff_depth` to find the final runoff amount.

## Tools

### calculate_runoff_depth
Calculates the depth of water that will run off given a specific rainfall event

### calculate_adjusted_cn
Adjusts the base Curve Number based on the current Antecedent Moisture Condition

### calculate_runoff_parameters
Calculates the physical runoff potential constants (Potential Maximum Retention and Initial Abstraction) for a specific CN

### generate_storm_series_runoff
Predicts runoff depth for a sequence of different storm events for a single landscape

### get_base_curve_number
Determines the standard Curve Number for a specific land use and soil group

## Prompt Examples

**Prompt:** 
```
What is the base curve number for forest land in soil group A?
```

**Response:** 
```
The base curve number for forest land in soil group A is 30.
```

**Prompt:** 
```
Calculate the runoff depth for 50mm of rain with a CN of 75 and initial abstraction of 5mm.
```

**Response:** 
```
The runoff depth for 50mm of rainfall is 33.33mm.
```

**Prompt:** 
```
Adjust a base CN of 80 for AMC III conditions.
```

**Response:** 
```
The adjusted curve number for AMC III is 91.2.
```

## Frequently Asked Questions

**What is the SCS Curve Number method?**
It is an empirical model used to estimate direct runoff from precipitation in small watersheds based on soil type and land cover.

**How do I account for wet soil conditions?**
You can use the `calculate_adjusted_cn` tool to adjust the base Curve Number for AMC I (dry), AMC II (average), or AMC III (wet) conditions.

**Can I calculate runoff for multiple storm events at once?**
Yes, the `generate_storm_series_runoff` tool allows you to provide a list of rainfall depths to predict a series of runoff results.
