# Infrastructure Project Finance Viability AI Agent Connect

> Calculate optimal capital structure and financial feasibility for large-scale infrastructure projects.

## Overview
- **Category:** infrastructure
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_Ip4KAdv6ratxktkZDMIZZ8HkHfl4lsesK9RBlTft/ai-agent-connect
- **Tags:** project-finance, dscr, irr, capital-structure, infrastructure

## Description

This MCP server provides specialized tools for infrastructure project finance modeling. It allows AI agents to determine the maximum debt capacity using `getMaxDebtCapacity`, calculate necessary equity via `calculateEquityRequirement`, and evaluate total profitability with `calculateProjectIrr`. The `validateFinanceViability` tool performs a holistic check to ensure projects meet both lender DSCR requirements and investor IRR targets, accounting for cash flow predictability and risk allocation.

## Tools

### calculateEquityRequirement
Determines the necessary equity contribution required to fully fund the project

### calculateProjectIrr
Evaluates the total profitability of the project itself, independent of the capital structure

### getMaxDebtCapacity
Calculates the maximum amount of debt a project can carry based on cash flow and coverage constraints

### validateFinanceViability
Performs a holistic check to see if a project configuration meets all investor and lender constraints

## Prompt Examples

**Prompt:** 
```
Calculate the maximum debt for a $100M project with $15M annual cash flow, a 1.5 DSCR requirement, and a predictability score of 0.9.
```

**Response:** 
```
The maximum debt capacity for this project is $90,000,000, leaving a remaining equity gap of $10,000,000.
```

**Prompt:** 
```
What is the equity needed for a $50M project if the max debt is $35M?
```

**Response:** 
```
The total equity required is $15,000,000, which represents 30% of the project cost.
```

**Prompt:** 
```
Is a project with a $200M cost, $25M annual cash flows, and a target IRR of 12% viable if we use $150M debt?
```

**Response:** 
```
The project is viable as it meets the required IRR and maintains the necessary debt service coverage.
```

## Frequently Asked Questions

**How does the tool handle cash flow volatility?**
The `getMaxDebtCapacity` tool uses a predictability score to adjust the maximum debt capacity, ensuring higher debt is only permitted for stable cash flows.

**Can I validate a full project configuration?**
Yes, use `validateFinanceViability` to check if your proposed debt, equity, and cash flows satisfy both DSCR and IRR constraints.

**What is the difference between Project IRR and Equity IRR in this model?**
The `calculateProjectIrr` tool evaluates the total profitability of the asset itself, independent of how it is financed.
