# PRMS Reserves Categorization AI Agent Connect

> Classify petroleum volumes into PRMS categories like 1P, 2P, and 3P.

## Overview
- **Category:** energy
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_uQzo4XOQtPWbYLbYVTzhZFimyeO5xra3voIKQCGi/ai-agent-connect
- **Tags:** prms, reserves, oil-and-gas, geology, classification

## Description

This MCP server provides tools to classify petroleum volumes according to the Petroleum Resources Management System (PRMS) framework. It uses geological certainty, development status, and commercial viability to categorize volumes into Proved (1P), Probable (2P), Possible (3P), Contingent Resources, or Prospective Resources. Use `categorize_volumes` to perform individual classifications, `get_reserve_totals` to aggregate cumulative totals, and `validate_prms_compliance` to ensure hierarchical data integrity.

## Tools

### evaluate_commercial_risk
Analyzes whether a volume should be moved from "Resources" to "Reserves" based on commercial thresholds

### get_reserve_totals
Aggregates multiple classified volumes to calculate cumulative 1P, 2P, and 3P totals

### validate_prms_compliance
Checks if a set of categorized volumes follows the hierarchical rules of the PRMS

### categorize_volumes
Performs the primary classification of petroleum volumes into PRMS categories

## Prompt Examples

**Prompt:** 
```
Classify a volume of 500 units with high geological certainty, currently in production, and commercially viable.
```

**Response:** 
```
The volume is classified as Proved (1P).
```

**Prompt:** 
```
What is the total 2P reserve if I have a Proved volume of 100 and a Probable volume of 50?
```

**Response:** 
```
The cumulative 2P total is 150.
```

**Prompt:** 
```
Analyze the commercial risk for a Contingent Resource with an economic indicator of 0.8.
```

**Response:** 
```
The volume is commercially viable, and the recommended action is to re-classify as Reserves.
```

## Frequently Asked Questions

**How do I classify a new volume?**
You can use the `categorize_volumes` tool by providing the geological confidence, development status, and commercial viability of the volume.

**Can I calculate cumulative 1P, 2P, and 3P totals?**
Yes, the `get_reserve_totals` tool aggregates multiple classified volumes to provide cumulative 1P, 2P, and 3P totals.

**How does the tool ensure PRMS compliance?**
The `validate_prms_compliance` tool checks your volume sets against hierarchical rules, such as ensuring a 'Possible' volume has corresponding 'Probable' or 'Proved' data.
