# LNG Terminal Capacity Analyzer AI Agent Connect

> Calculate LNG import terminal capacity, throughput, and storage utilization.

## Overview
- **Category:** infrastructure
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_BfutyJjJBZZVCDs5sKYGtyOcayU0KaqO0W4CvGYa/ai-agent-connect
- **Tags:** lng, terminal, capacity, throughput, storage

## Description

This MCP server provides specialized tools for managing LNG import terminal operations. It allows AI agents to calculate annual throughput, evaluate peak sendout capability, and analyze storage utilization. By using `calculate_annual_throughput`, agents can identify if capacity is limited by supply or infrastructure. The `calculate_peak_sendout_capability` tool helps determine remaining capacity after accounting for truck loading and bunkering, while `calculate_storage_utilization` provides critical projections for inventory management following vessel arrivals.

## Tools

### analyze_terminal_efficiency
Provides a holistic view of terminal performance across multiple metrics

### calculate_annual_throughput
Determines the total volume of LNG the terminal can process in a year

### calculate_peak_sendout_capability
Evaluates the terminal's ability to meet maximum demand periods

### calculate_storage_utilization
Analyzes how much storage is consumed by different activities

## Prompt Examples

**Prompt:** 
```
What is the annual throughput for a terminal with 500,000 m3 storage, 500,000 m3/day sendout, and vessel arrivals of [100000, 150000, 200000]?
```

**Response:** 
```
The total annual throughput is 450,000 m3, and the bottleneck is supply.
```

**Prompt:** 
```
Calculate the available peak sendout if the max sendout is 1000 m3/h, truck loading is 100 m3/h, and bunkering is 50 m3/h.
```

**Response:** 
```
The available peak sendout is 850 m3/h.
```

**Prompt:** 
```
What will the storage utilization be if I have 50,000 m3 in a 100,000 m3 tank and a vessel of 40,000 m3 arrives?
```

**Response:** 
```
The utilization is 50%, and the projected volume after arrival will be 90,000 m3.
```

## Frequently Asked Questions

**How can I determine if my terminal is supply-constrained?**
You can use the `calculate_annual_throughput` tool. It returns a `bottleneckType` which will explicitly state if the capacity is limited by 'supply' (vessel arrivals) or 'infrastructure' (sendout rate).

**Does this tool account for truck loading and bunkering?**
Yes. The `calculate_peak_sendout_capability` tool allows you to input truck and bunkering rates to find the remaining available peak sendout for consumer demand.

**Can I project storage levels after a vessel arrives?**
Yes, the `calculate_storage_utilization` tool provides a `projectedPostArrivalVolume` which estimates the volume in tanks immediately after the next scheduled vessel arrival.
