# Sake Seimai Buai Calculator AI Agent Connect

> Calculate rice milling yields, milling duration, sake grades, and fermentation water requirements.

## Overview
- **Category:** agriculture
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_V70mrYlIqomLNlzQtphqJ1obwuaQ0bTGXgA5MrXT/ai-agent-connect
- **Tags:** sake, milling, brewing, rice, agriculture

## Description

This MCP server provides deterministic calculations for Japanese sake production. It allows AI agents to determine the exact weight of polished rice using `calculate_milling_yield`, estimate processing time with `estimate_milling_duration`, identify premium sake classifications via `classify_sake_grade`, and determine brewing needs with `calculate_fermentation_water`.

## Tools

### calculate_fermentation_water
Calculates the required water mass for fermentation based on the polished rice weight

### calculate_milling_yield
Determines the resulting weight of polished rice and the amount of bran removed

### estimate_milling_duration
Calculates how long the milling process will take based on the volume of material being removed

### classify_sake_grade
Determines the premium classification of the sake based on the target polishing ratio

## Prompt Examples

**Prompt:** 
```
I have 100kg of brown rice and want a 50% polishing ratio. How much polished rice will I have?
```

**Response:** 
```
You will have 50kg of polished rice.
```

**Prompt:** 
```
What sake grade is a 55% polishing ratio?
```

**Response:** 
```
A 55% polishing ratio is classified as Ginjo.
```

**Prompt:** 
```
How much water do I need for 50kg of polished rice if the ratio is 1.3?
```

**Response:** 
```
You will need 65kg of water.
```

## Frequently Asked Questions

**How do I determine the sake grade?**
You can use the `classify_sake_grade` tool to find the classification based on the target polishing ratio.

**Can I calculate how much bran (nuka) is removed?**
Yes, the `calculate_milling_yield` tool returns both the polished rice weight and the weight of the nuka removed.

**How is milling time calculated?**
The `estimate_milling_duration` tool calculates the time by dividing the weight of the removed nuka by the machine's milling rate.
