# Grass Seed Yield Components AI Agent Connect

> Calculate grass seed yield and lodging risk factors.

## Overview
- **Category:** agriculture
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_hLxQ0PjdEuYx3jfLFqOkY60uR0PUqikdTh8UwQjM/ai-agent-connect
- **Tags:** yield, grass, agronomy, lodging, seed-production

## Description

This MCP server provides specialized agronomic calculation tools for estimating grass seed productivity. It allows AI agents to model the biological yield hierarchy--from tiller density to thousand seed weight--using `calculate_theoretical_yield`. Additionally, it accounts for environmental stressors by using `adjust_for_lodging_risk` to factor in nitrogen application rates, stand age, and specific species coefficients for perennial ryegrass, tall fescue, and orchardgrass. Use `get_species_coefficients` to retrieve biological constants for specific grass types.

## Tools

### adjust_for_lodging_risk
Calculates a yield reduction factor based on environmental and management risks

### calculate_theoretical_yield
Determines the maximum potential seed production based on biological components

### get_species_coefficients
Retrieves the specific biological constant for a given grass species

## Prompt Examples

**Prompt:** 
```
Calculate the theoretical yield for a stand with 500 tillers/m2, 400 fertile tillers/m2, 15 spikelets/tiller, 3 florets/spikelet, 2 seeds/floret, and a TSW of 25g.
```

**Response:** 
```
The theoretical yield is 1200 kg per hectare with 12,000 seeds per square meter.
```

**Prompt:** 
```
What is the coefficient for tall fescue?
```

**Response:** 
```
The biological coefficient for tall fescue is 0.85.
```

**Prompt:** 
```
Adjust a yield of 1500 kg/ha for a 2-year-old tall fescue stand with a nitrogen rate of 150 kg/ha.
```

**Response:** 
```
The adjusted yield is 1275 kg per hectare after a 15% reduction due to lodging risk.
```

## Frequently Asked Questions

**How do I calculate the total yield per hectare?**
You can use the `calculate_theoretical_yield` tool by providing the tiller density, fertile tillers, spikelets, florets, seeds per floret, and thousand seed weight.

**Can I adjust my yield estimate for lodging risk?**
Yes, use the `adjust_for_lodging_risk` tool. It requires the base yield, nitrogen rate, stand age, and the specific grass species to calculate the reduction factor.

**Which grass species are supported?**
The server supports perennial_ryegrass, tall_fescue, and orchardgrass via the `get_species_coefficients` tool.
