# Petroleum Revenue Tax Calculator AI Agent Connect

> Calculates petroleum revenue tax (PRT) liability and after-tax cash flow.

## Overview
- **Category:** finance
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_ljLjQfJVw9EyTD1E6DO1wh4SopZoDqm6cHb2dG8y/ai-agent-connect
- **Tags:** petroleum, tax, revenue, fiscal, oil-and-gas

## Description

This MCP server provides tools to calculate Petroleum Revenue Tax (PRT) and net liquidity for petroleum operators. It handles the full fiscal sequence, including calculating taxable profit using `get_taxable_profit`, determining tax liability with `calculate_prt_liability`, and finding final cash flow via `calculate_after_tax_cash_flow`. It also provides revenue breakdowns using `get_revenue_summary`.

## Tools

### calculate_prt_liability
Calculates the specific tax amount owed to the government

### get_revenue_summary
Provides a high-level breakdown of total revenue components

### get_taxable_profit
Determines the profit amount subject to taxation

### calculate_after_tax_cash_flow
Determines the net liquidity available to the operator

## Prompt Examples

**Prompt:** 
```
What is the taxable profit for a project with 1000 gross revenue, 100 oil allowance, 200 operating costs, and 150 capital allowances?
```

**Response:** 
```
The taxable profit is 550.
```

**Prompt:** 
```
Calculate the PRT liability for a taxable profit of 500 with a tax rate of 0.35.
```

**Response:** 
```
The PRT liability is 175.
```

**Prompt:** 
```
What is the after-tax cash flow if gross revenue is 1000, operating costs are 200, and PRT liability is 175?
```

**Response:** 
```
The after-tax cash flow is 625.
```

## Frequently Asked Questions

**How do I calculate the taxable profit?**
You can use the `get_taxable_profit` tool by providing the gross revenue, oil allowance, operating costs, and capital allowances.

**Can I calculate the final cash flow?**
Yes, use the `calculate_after_tax_cash_flow` tool with the gross revenue, operating costs, and the calculated PRT liability.

**What is included in the gross revenue?**
Gross revenue includes the market value of production and any tariff income, which can be summarized using `get_revenue_summary`.
