# Well Trajectory Design AI Agent Connect

> Design and validate precise wellbore paths for directional and horizontal drilling.

## Overview
- **Category:** engineering
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_6lXQPuV4PUilwukAqmQrbIdzrVqDgo3a6yNuQ60K/ai-agent-connect
- **Tags:** wellbore, trajectory, drilling, directional-drilling, petroleum

## Description

This MCP server provides specialized engineering tools for designing wellbore trajectories. It allows AI agents to generate complete paths from surface to target using methods like `minimum_curvature`. Users can validate designs using `validate_mechanical_constraints` to check for torque and drag, ensure safety with `check_anti_collision`, and decompose drilling phases using `analyze_build_and_hold`.

## Tools

### analyze_build_and_hold
Decomposes the trajectory to identify specific drilling phases

### check_anti_collision
Ensures the new well trajectory does not intersect with existing nearby wells

### design_trajectory
Generates a complete wellbore path from surface to target

### validate_mechanical_constraints
Checks if the designed trajectory is physically drillable by evaluating friction and stress

## Prompt Examples

**Prompt:** 
```
Design a directional well from surface (0,0,0) to target (500,500,1000) with a max DLS of 3 degrees per 30m using minimum curvature.
```

**Response:** 
```
The designed trajectory has a total measured depth of 1245.6 meters with a final inclination of 42.3 degrees and an azimuth of 45.0 degrees.
```

**Prompt:** 
```
Check if this trajectory is drillable with a drill string weighing 5000kg and a friction coefficient of 0.25.
```

**Response:** 
```
The trajectory is feasible. The maximum torque is 12500 Nm and the maximum drag is 4500 kg.
```

**Prompt:** 
```
Analyze the drilling phases for the current trajectory.
```

**Response:** 
```
The trajectory consists of a build section from 0 to 450m, a tangent section from 450 to 800m, and a horizontal section starting at 800m.
```

## Frequently Asked Questions

**How do I design a new wellbore path?**
You can use the `design_trajectory` tool by providing the surface and target coordinates, the well type, and the maximum allowable dogleg severity.

**Can I check if my design will cause mechanical issues?**
Yes, the `validate_mechanical_constraints` tool evaluates friction and stress to determine if the trajectory is physically drillable.

**How does the tool prevent collisions with existing wells?**
The `check_anti_collision` tool compares the new trajectory against a list of existing well paths to identify any potential intersection risks.
