# Production Forecasting Model AI Agent Connect

> Predict oil and gas production rates using reservoir data and decline curve analysis.

## Overview
- **Category:** engineering
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_koEsD1f0AKGo3EznOsJllWY6D167wtTr2JxffAm1/ai-agent-connect
- **Tags:** oil-and-gas, reservoir-engineering, production-forecasting, dca, petroleum

## Description

This MCP server provides specialized engineering tools for oil and gas reservoir management. It allows AI agents to calculate projected production profiles using `forecast_production_profile`, determine the profitability window with `calculate_economic_limit`, and adjust forecasts for physical equipment limits using `apply_facility_constraints`. It also enables sensitivity analysis through `evaluate_well_density_impact` to understand how well spacing affects recovery.

## Tools

### calculate_economic_limit
Determines when the field will cease to be profitable

### evaluate_well_density_impact
Analyzes how changing the number of wells affects the peak production and total recovery

### forecast_production_profile
Calculates the projected production rates over a specified time horizon

### apply_facility_constraints
Adjusts a theoretical production forecast to account for physical equipment limitations

## Prompt Examples

**Prompt:** 
```
Forecast production for a reservoir with porosity 0.2, permeability 50, and initial pressure 3000 psi using a water drive for 24 months with 5 wells.
```

**Response:** 
```
The projected monthly production rates for the 24-month period show a peak rate of 1,200 barrels per day, with a total cumulative production of 18,450 barrels.
```

**Prompt:** 
```
What is the economic life if my production profile shows 500 barrels per day and my operating cost is $20 per barrel while the market price is $60 per barrel?
```

**Response:** 
```
The field will remain profitable for 48 months, with an estimated abandonment date of December 2028.
```

**Prompt:** 
```
Adjust a production rate of [100, 150, 200, 150] for a facility with a maximum capacity of 120.
```

**Response:** 
```
The constrained production rates are [100, 120, 120, 120].
```

## Frequently Asked Questions

**How do I forecast future production?**
You can use the `forecast_production_profile` tool by providing reservoir characteristics, the number of wells, the drive mechanism, and the desired time horizon.

**Can I account for facility limitations?**
Yes, the `apply_facility_constraints` tool allows you to cap theoretical production rates based on the maximum capacity of your equipment.

**How is the economic life of a field determined?**
The `calculate_economic_limit` tool determines the end of profitability by comparing the production profile against operating costs and market prices.
