# Brazil Nut Yield Model AI Agent Connect

> Estimates Brazil nut yield per hectare using allometric equations and environmental data.

## Overview
- **Category:** environmental-science
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_hKYTh5lSpU7zyPHfkxDrfF9JZ4tKQOqTd1KjxZ9N/ai-agent-connect
- **Tags:** forestry, yield-modeling, ecology, agriculture, brazil-nuts

## Description

This MCP server provides specialized tools for modeling Brazil nut production in natural forest systems. It uses allometric scaling to calculate how tree size (DBH) and environmental factors like rainfall and pollinator abundance affect fruit set and kernel yield. Use `calculate_tree_productivity` to find individual tree output, `estimate_hectare_yield` for area-wide production, and `analyze_pollination_impact` to assess how bee populations influence yield.

## Tools

### analyze_pollination_impact
Analyzes how sensitive the yield is to changes in pollinator populations

### calculate_tree_productivity
Calculates expected fruit production for a single tree based on DBH, exposure, and environmental factors

### estimate_hectare_yield
Estimates the total expected kernel yield per hectare

## Prompt Examples

**Prompt:** 
```
What is the expected kernel yield for a tree with a DBH of 50cm, high crown exposure, flowering intensity of 0.8, pollinator abundance of 0.5, and 1500mm rainfall?
```

**Response:** 
```
The expected kernel weight for this tree is 12.4 kg.
```

**Prompt:** 
```
Calculate the total yield per hectare if there are 40 trees per hectare and each tree produces 15kg of kernels.
```

**Response:** 
```
The total expected yield is 600 kg per hectare.
```

**Prompt:** 
```
How much will a decrease in bees affect my yield if flowering intensity is 0.9 and current pollinator abundance is 0.4?
```

**Response:** 
```
The sensitivity index is 0.75, indicating that a small decrease in bee populations will significantly reduce the fruit set rate.
```

## Frequently Asked Questions

**How does pollinator abundance affect the results?**
The `analyze_pollination_impact` tool calculates how sensitive the yield is to bee populations. Low pollinator abundance can significantly reduce the fruit set efficiency regardless of flowering intensity.

**What inputs are needed for tree productivity?**
To use `calculate_tree_productivity`, you need the DBH distribution, crown exposure class, flowering intensity, pollinator abundance, and rainfall amount.

**Can I estimate total yield for a large area?**
Yes, by using `estimate_hectare_yield` with the tree density and the productivity data obtained from `calculate_tree_productivity`.
