# Perforating Gun Selection Engine AI Agent Connect

> Select optimal perforating gun systems based on casing, formation, and conveyance constraints.

## Overview
- **Category:** engineering
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_AUenkMcFkFUhFmAGEV9PcXtsLVlSG15ZPdSMoko9/ai-agent-connect
- **Tags:** perforating, completion, wellbore, oilfield, engineering-tools

## Description

This MCP server provides an intelligent decision engine for oil and gas completion operations. It allows AI agents to calculate penetration depth, evaluate system capacity for wireline or TCP deployment, and recommend the best gun configuration. By using `select_optimal_system`, agents can match casing diameters and formation hardness to specific shaped charge performance metrics.

## Tools

### calculate_system_capacity
Determines if a specific gun system can be safely deployed based on the conveyance method

### evaluate_penetration_capability
Predicts the effective penetration depth based on formation resistance and charge performance

### get_gun_performance
Retrieves specific performance metrics for a selected charge type

### select_optimal_system
Recommends the best gun configuration by matching casing constraints and formation requirements

## Prompt Examples

**Prompt:** 
```
Recommend a gun system for a 7-inch casing with a minimum penetration requirement of 15 inches using wireline.
```

**Response:** 
```
The recommended gun system is the CP-15-W, which provides an estimated penetration of 16.2 inches and fits within the 7-inch casing.
```

**Prompt:** 
```
Is a 500lb gun assembly safe to deploy via wireline if the limit is 450lbs?
```

**Response:** 
```
No, the deployment is not feasible as the gun weight exceeds the wireline limit.
```

**Prompt:** 
```
What is the penetration depth for charge type 'X-200' in a formation with a hardness of 1.2?
```

**Response:** 
```
The effective penetration depth for the X-200 charge in this formation is 14.4 inches.
```

## Frequently Asked Questions

**How does the engine handle different conveyance methods?**
The engine uses `calculate_system_capacity` to verify if a gun weight is safe for either wireline or TCP (Tubing Conveyed Perforating) based on specified weight limits.

**Can I predict penetration depth for specific rock types?**
Yes, by using `evaluate_penetration_capability`, you can adjust the base performance of a charge using a formation hardness multiplier to predict effective depth.

**What information is needed to recommend a gun system?**
To use `select_optimal_system`, you need the casing internal diameter, the minimum required penetration depth, and the intended conveyance method.
