# Venture Dividend Rights Analysis AI Agent Connect

> Calculates economic impact of dividend rights on preferred and common shareholders.

## Overview
- **Category:** finance
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_rLk1d1ruo1mipRf99NJHXDDunZegK86dU1JScWGA/ai-agent-connect
- **Tags:** dividends, equity, venture-capital, finance, modeling

## Description

This MCP server provides precise economic modeling for venture-backed dividend rights. It allows AI agents to calculate the exact dollar value of dividends using `get_dividend_value`, determine how profits are split between shareholder classes with `analyze_equity_distribution`, and evaluate investment performance via `calculate_yield_metrics`. It also includes `validate_rights_structure` to ensure that proposed dividend rates and participation caps are mathematically viable against available profits.

## Tools

### validate_rights_structure
Validates if a specific set of rights and caps is mathematically viable under a given profit scenario

### analyze_equity_distribution
Determines how total distributable profits are split between preferred and common shareholders

### calculate_yield_metrics
Calculates the effective yield of the preferred investment

### get_dividend_value
Calculates the absolute dollar amount of the dividend owed to preferred shareholders for a single period

## Prompt Examples

**Prompt:** 
```
What is the dividend value for a 5% cumulative dividend on a $1,000,000 base with $50,000 in arrears?
```

**Response:** 
```
The total dividend value is $100,000.
```

**Prompt:** 
```
If there is $500,000 in profit, a $100,000 preferred dividend, and the preferred shares are participating with a $50,000 cap, how much does the common shareholder get?
```

**Response:** 
```
The common shareholder receives $350,000.
```

**Prompt:** 
```
Calculate the yield for a $50,000 dividend on a $1,000,000 investment.
```

**Response:** 
```
The effective yield is 0.05.
```

## Frequently Asked Questions

**How does the tool handle cumulative dividends?**
The `get_dividend_value` tool accounts for cumulative rights by allowing you to include an arrears amount, ensuring unpaid dividends from previous periods are added to the current obligation.

**Can I model participating preferred shares?**
Yes, use `analyze_equity_distribution` to model how preferred holders participate in remaining profits after their initial dividend is paid, including the application of a participation cap.

**How is the investment yield calculated?**
The `calculate_yield_metrics` tool calculates the effective yield as the decimal ratio of the total dividend paid to the initial investment amount.
