# Citrus Maturity Analyzer AI Agent Connect

> Calculate citrus maturity indices and predict harvest windows based on Brix and acidity.

## Overview
- **Category:** agriculture
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_w0IVIYEetI7ulGzxzeOczOubQw2Y0mrLkYlfrsS0/ai-agent-connect
- **Tags:** citrus, harvest, agriculture, brix, maturity

## Description

This MCP server provides specialized tools for citrus producers to monitor fruit ripeness. By analyzing Brix (soluble solids) and titratable acidity, users can determine the current maturity status using `calculate_maturity_indices`. The server also allows for forecasting harvest timing via `predict_harvest_window`, accounting for biological sugar accumulation and acid degradation. Additionally, `get_variety_standards` provides access to biological minimums for different citrus types like oranges and grapefruits.

## Tools

### calculate_maturity_indices
Determines the current maturity status of a specific citrus sample

### get_variety_standards
Retrieves the hardcoded biological minimums for different citrus types

### predict_harvest_window
Forecasts when the fruit will meet specific market requirements

## Prompt Examples

**Prompt:** 
```
What is the maturity status for an orange with 12 Brix and 1.2 acidity?
```

**Response:** 
```
The maturity ratio is 10.0, the predicted juice percentage is 45%, and the estimated solids per box is 12.5 lbs.
```

**Prompt:** 
```
When will my grapefruit be ready for the fresh market? Current Brix is 8.0 and acidity is 1.1.
```

**Response:** 
```
The fruit is estimated to be ready for the fresh market in 12 days.
```

**Prompt:** 
```
What are the minimum standards for grapefruit?
```

**Response:** 
```
The minimum maturity ratio for grapefruit is 6.5:1.
```

## Frequently Asked Questions

**How do I know if my citrus is ready for the fresh market?**
You can use `predict_harvest_window` to check if your fruit meets the specific maturity ratio required for the fresh market based on its current Brix and acidity levels.

**What information is needed to calculate maturity indices?**
To use `calculate_maturity_indices`, you need to provide the Brix percentage, the acidity percentage, and the specific citrus variety.

**Can I check the minimum standards for different varieties?**
Yes, the `get_variety_standards` tool provides the minimum required maturity ratios and other biological coefficients for various citrus types.
