# Kick Tolerance Calculator AI Agent Connect

> Calculate critical well control safety limits including MAASP and maximum influx volume.

## Overview
- **Category:** engineering
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_jWhCEvYiCjgyd5EzYab68LstrvWKSIoMB0i75Qz4/ai-agent-connect
- **Tags:** well-control, drilling, maasp, kick-tolerance, pressure-management

## Description

This MCP server provides essential well control calculations to maintain the drilling window. It allows AI agents to determine the Maximum Allowable Annular Surface Pressure (MAASP) using `calculate_maasp`, calculate the maximum safe influx volume with `calculate_kick_tolerance_volume`, and determine surface pressure limits via `calculate_max_surface_pressure`. It also provides wellbore geometry analysis through `get_wellbore_capacity` to ensure formation integrity is maintained during kick management.

## Tools

### get_wellbore_capacity
Provides the volume capacity of the wellbore based on geometry

### calculate_kick_tolerance_volume
Calculates the maximum volume of an influx that can be tolerated before the shoe fractures

### calculate_maasp
Determines the maximum safe pressure that can be applied to the annulus

### calculate_max_surface_pressure
Calculates the maximum pressure allowed at the surface during a kick

## Prompt Examples

**Prompt:** 
```
What is the MAASP for a shoe depth of 2000m, fracture gradient of 1.5 psi/ft, pore pressure of 1.0 psi/ft, and mud weight of 1.2 psi/ft?
```

**Response:** 
```
The Maximum Allowable Annular Surface Pressure (MAASP) is 600 psi.
```

**Prompt:** 
```
Calculate the maximum influx volume if the shoe depth is 2500m, fracture gradient is 1.6, pore pressure is 1.1, mud weight is 1.3, influx density is 0.1, and annular capacity is 0.05.
```

**Response:** 
```
The maximum tolerated influx volume is 125 cubic units.
```

**Prompt:** 
```
What is the maximum surface pressure for a gas kick at 500m depth if the MAASP is 800 psi?
```

**Response:** 
```
The maximum surface pressure allowed is 750 psi.
```

## Frequently Asked Questions

**What is MAASP?**
MAASP is the Maximum Allowable Annular Surface Pressure, which is the maximum pressure that can be applied to the annulus before the formation at the casing shoe fractures.

**How does the tool handle gas vs water influx?**
The `calculate_max_surface_pressure` tool accounts for the different physical behaviors of gas expansion versus water incompressibility to provide accurate surface pressure limits.

**Can I calculate wellbore volumes?**
Yes, you can use `get_wellbore_capacity` to calculate both the annular volume and the drill pipe volume based on the provided diameters and total depth.
