# Well Log Interpretation AI Agent Connect

> Interprets open-hole well logs to evaluate formation properties and identify hydrocarbons.

## Overview
- **Category:** energy
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_HkAEYOQX89oOeYJ089GR6n5erkRSvAk9vboCbi8I/ai-agent-connect
- **Tags:** petrophysics, well-logs, reservoir-engineering, hydrocarbons, formation-evaluation

## Description

This MCP server provides specialized tools for formation evaluation using open-hole well logs. It allows AI agents to process gamma ray, resistivity, density, and sonic data to determine critical reservoir characteristics. Using `get_shale_volume`, agents can assess lithology by calculating shale volume. The `calculate_porosity` tool estimates void space in the rock, while `evaluate_water_saturation` identifies potential hydrocarbon zones by calculating the water-filled pore fraction. Finally, `calculate_hydrocarbon_thickness` computes the net vertical thickness of hydrocarbon-bearing intervals, facilitating precise reservoir quality assessment.

## Tools

### calculate_hydrocarbon_thickness
Computes the net thickness of the hydrocarbon-bearing interval

### calculate_porosity
Estimates the rock porosity using available density or sonic data

### evaluate_water_saturation
Calculates the fraction of pore space filled with water to identify potential oil or gas zones

### get_shale_volume
Determines the volume of shale within a specific depth interval to assess lithology

## Prompt Examples

**Prompt:** 
```
Calculate the shale volume for these gamma ray readings: [20, 25, 30, 80, 90]. Use 10 as the clean minimum and 100 as the pure shale maximum.
```

**Response:** 
```
[0.1, 0.16, 0.22, 0.77, 0.88]
```

**Prompt:** 
```
Estimate the porosity using density log values [2.3, 2.4, 2.2] with a matrix density of 2.65 and fluid density of 1.0.
```

**Response:** 
```
[0.136, 0.113, 0.173]
```

**Prompt:** 
```
What is the total hydrocarbon thickness if porosity is [0.2, 0.2], water saturation is [0.3, 0.3], and depth intervals are [5, 5]?
```

**Response:** 
```
7.0
```

## Frequently Asked Questions

**What kind of log data can I use with this server?**
You can use gamma ray, resistivity, density, and sonic log data to perform various formation evaluation calculations.

**How do I calculate the shale volume?**
Use the `get_shale_volume` tool by providing the gamma ray log readings along with the minimum and maximum gamma ray benchmarks for clean and pure shale formations.

**Can this tool help identify oil or gas zones?**
Yes, by using `evaluate_water_saturation` to find low water saturation zones and `calculate_hydrocarbon_thickness` to determine the net thickness of the hydrocarbon-bearing interval.
