petropt/petro-mcp

petropt/petro-mcp

MCP server that gives LLMs access to petroleum engineering data and tools. Parse well logs, query production data, fit decline curves, calculate EUR, and run nodal analysis -- all through natural language with any MCP-compatible AI assistant.

Category
Visit Server

README

petro-mcp

Python 3.10+ License: MIT MCP

MCP server that gives LLMs access to petroleum engineering data and tools.

Parse well logs, query production data, fit decline curves, calculate EUR, and run nodal analysis -- all through natural language with any MCP-compatible AI assistant.

Built by Groundwork Analytics


What is this?

petro-mcp is a Model Context Protocol server that exposes petroleum engineering workflows to LLMs like Claude and other MCP-compatible assistants. Instead of writing scripts to parse LAS files or fit decline curves, just ask your AI assistant in plain English.

Why MCP? MCP is an open standard that lets AI assistants interact with external data and tools. While other energy MCP servers provide commodity prices (OilpriceAPI), petro-mcp is purpose-built for petroleum engineering workflows -- LAS well log parsing, physics-constrained decline curve analysis, nodal analysis, and production diagnostics.

Prerequisites

Installation

pip install petro-mcp

Or install from source:

git clone https://github.com/petropt/petro-mcp.git
cd petro-mcp
pip install -e .

Quick Start

Configure with Claude Desktop

Add to your claude_desktop_config.json:

Config file location:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "petro-mcp": {
      "command": "petro-mcp",
      "args": []
    }
  }
}

If installed from source:

{
  "mcpServers": {
    "petro-mcp": {
      "command": "python",
      "args": ["-m", "petro_mcp.server"]
    }
  }
}

Configure with Cursor / VS Code

Add to your MCP settings (.cursor/mcp.json or equivalent):

{
  "mcpServers": {
    "petro-mcp": {
      "command": "petro-mcp"
    }
  }
}

Use it

Once configured, ask your AI assistant:

  • "Read the LAS file at /data/wells/wolfcamp.las and summarize the curves"
  • "Load production data from /data/prod.csv and fit a decline curve for Wolfcamp A-1H"
  • "Calculate EUR with qi=800, Di=0.06, b=1.1 and a 5 bbl/day economic limit"
  • "Run a nodal analysis: 3500 psi reservoir, PI=4.2, 2.875-inch tubing, 150 psi wellhead"

Tools

Tool Description
read_las Parse a LAS 2.0 file -- returns well header and curve statistics
get_header Extract well header metadata (name, UWI, location, KB, TD)
get_curves List all curves with units and descriptions
get_curve_values Get curve data with optional depth range filtering
query_production Query production CSV data by well name and date range
fit_decline Fit Arps decline curves (exponential, hyperbolic, harmonic)
calculate_eur Calculate Estimated Ultimate Recovery from decline parameters
calculate_ratios Compute GOR, WOR, water cut; classify well type
run_nodal_analysis Simplified IPR/VLP intersection for operating point
analyze_trends Detect production anomalies: shut-ins, rate jumps, water breakthrough
calculate_pvt_properties Black-oil PVT: Pb, Bo, Rs, viscosity, Z-factor (Standing, Beggs-Robinson)
calculate_bubble_point Bubble point pressure from Standing's correlation
convert_oilfield_units Convert between oilfield units (pressure, volume, density, API/SG, BOE)
list_oilfield_units List all supported unit categories and conversions

Decline Curve Analysis

The decline curve tools are physics-constrained:

  • b-factor bounded to [0, 2] (physical range for Arps models)
  • Non-negative rates enforced throughout
  • Three models: exponential (b=0), harmonic (b=1), hyperbolic (0 < b < 2)
  • Returns R-squared, parameter uncertainties, and residual statistics

Production Data

Accepts CSV files with flexible column naming:

  • Date column: date, Date, DATE
  • Oil: oil, oil_rate, BOPD
  • Gas: gas, gas_rate, MCFD
  • Water: water, water_rate, BWPD
  • Well name: well_name, well, Well Name

Prompt Templates

Built-in prompt templates for common workflows:

Prompt Description
analyze_decline Full decline analysis with model comparison and EUR
compare_completions Compare completion effectiveness across wells
summarize_logs Summarize log suite with pay zone identification
production_anomalies Detect rate changes, shut-ins, water breakthrough
calculate_well_eur Step-by-step EUR calculation with confidence intervals

Resources

Resource URI Description
wells://list/{directory} Browse wells in a directory of LAS/CSV files
wells://production/{file_path} Per-well production summary from a CSV file

Example Data

The examples/ directory includes:

  • sample_well.las -- Synthetic Wolfcamp well log (GR, RHOB, NPHI, ILD, SP)
  • sample_production.csv -- 36 months of decline data for 3 Permian Basin wells
  • usage_examples.md -- Detailed usage examples

Example Output

Prompt: "Read the LAS file at examples/sample_well.las and summarize the curves"

Well: Wolfcamp A-1H (Spraberry Trend, Midland County, TX)
Depth range: 5000–5020 ft, 0.5 ft step (41 samples)

┌───────┬──────┬────────────────────────────┬───────────────┐
│ Curve │ Unit │        Description         │     Range     │
├───────┼──────┼────────────────────────────┼───────────────┤
│ GR    │ GAPI │ Gamma Ray                  │ 22–126        │
│ RHOB  │ G/CC │ Bulk Density               │ 2.53–2.67     │
│ NPHI  │ V/V  │ Neutron Porosity           │ 0.09–0.23     │
│ ILD   │ OHMM │ Deep Induction Resistivity │ 3.9–175       │
│ SP    │ MV   │ Spontaneous Potential      │ -30.5 to -2.0 │
└───────┴──────┴────────────────────────────┴───────────────┘

Quick interpretation:
- Shale zones (~5002–5005 ft): High GR (>100), low resistivity,
  high NPHI — classic shale signature.
- Clean/tight zones (~5008–5010 ft): Low GR (<30), high resistivity
  (>100 ohm-m), low NPHI — likely tight carbonate, potentially
  hydrocarbon-bearing.

Limitations

  • LAS 2.0 only -- LAS 3.0 and DLIS formats are not yet supported
  • Arps models only -- Modified hyperbolic, Duong, and SEPD decline models are not yet implemented
  • Simplified nodal analysis -- Uses Vogel IPR and a simplified friction model, not Beggs-Brill or Hagedorn-Brown. Results are directional/screening-level, not suitable for detailed well design
  • CSV production data only -- No database, WITSML, or API connectors yet
  • No visualization -- Returns JSON data only, no plots

Development

git clone https://github.com/petropt/petro-mcp.git
cd petro-mcp
pip install -e .
pip install pytest
pytest tests/ -v

Contributing

Contributions are welcome. Please:

  1. Fork the repository
  2. Create a feature branch
  3. Add tests for new functionality
  4. Submit a pull request

Areas where contributions are especially valuable:

  • WITSML real-time data support
  • Reservoir simulation output readers (Eclipse, OPM Flow)
  • OSDU API connector
  • Additional decline curve models (modified hyperbolic, Duong, SEPD)
  • Well spacing and interference analysis

License

MIT License. See LICENSE for details.

Need More?

petro-mcp covers single-well analysis workflows. For advanced capabilities, Groundwork Analytics offers:

  • Multi-well batch analysis and ranking
  • Probabilistic EUR (P10/P50/P90)
  • Database integration (Enverus, IHS, WITSML)
  • Custom AI workflows for your engineering team

Visit petropt.com or reach out at info@petropt.com

About

Built by Groundwork Analytics

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured