# Joint Venture Accounting AI Agent Connect

> Calculates joint venture cost sharing, cash calls, and account status based on JOA terms.

## Overview
- **Category:** finance
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_IGcGHAVNThhSaJ2NnAMvAtYHLweN0woXjOuOEUNk/ai-agent-connect
- **Tags:** joint-venture, joa, cost-sharing, cash-calls, accounting

## Description

This MCP server provides specialized tools for managing Joint Venture (JV) finances in the oil, gas, and mining industries. It automates the complex calculations required by Joint Operating Agreements (JOA). Use `get_cost_allocation` to split expenditures by working interest, `calculate_cash_calls` to request funds from partners, `analyze_joint_account_status` to monitor net positions and overdrafts, and `evaluate_sole_risk_impact` to handle non-consent scenarios.

## Tools

### calculate_cash_calls
Generates the amount of money each partner needs to pay to cover expenditures or rectify an overdraft

### evaluate_sole_risk_impact
Calculates the financial implications when a partner opts out of a specific cost (Non-Consent/Sole Risk)

### analyze_joint_account_status
Provides a high-level summary of the financial health of the JV (net position)

### get_cost_allocation
Determines the specific dollar amount each partner is responsible for based on expenditures and working interests

## Prompt Examples

**Prompt:** 
```
Calculate the cost allocation for an expenditure of $100,000 with working interests: PartnerA: 60%, PartnerB: 40%.
```

**Response:** 
```
PartnerA is responsible for $60,000 and PartnerB is responsible for $40,000.
```

**Prompt:** 
```
What is the current status of the joint account if total expenditures are $500,000 and PartnerA has contributed $300,000 and PartnerB has contributed $150,000 with interests of 50% each?
```

**Response:** 
```
The total expenditure is $500,000. PartnerA has an Underdraft of $50,000, and PartnerB has an Overdraft of $25,000.
```

**Prompt:** 
```
A partner with 20% interest opts out of a $50,000 drilling cost. How much do the remaining partners pay?
```

**Response:** 
```
The remaining partners will split the $50,000 cost proportional to their relative working interests.
```

## Frequently Asked Questions

**How does the server handle carried interest?**
When `carriedInterestTerms` are provided to `get_cost_allocation`, the tool adjusts the allocations so the carried party's share is covered by the carrying party.

**Can I calculate cash calls for existing overdrafts?**
Yes, by using `calculate_cash_calls` and providing the current partner balances in the `currentBalances` parameter.

**What happens during a sole risk operation?**
You can use `evaluate_sole_risk_impact` to determine how the cost of an operation is distributed exclusively among the consenting partners.
