# Bubble Tea Nutrition Calculator AI Agent Connect

> Calculate calories, sugar, and caffeine for customized bubble tea drinks.

## Overview
- **Category:** nutrition
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_CgQYQ7Vc8aIrFEwGgu5RGRjO2JHLvKBc0M3DvSJm/ai-agent-connect
- **Tags:** bubble-tea, calories, nutrition, sugar, caffeine

## Description

This MCP server provides precise nutritional estimation for bubble tea customizations. Use `calculate_drink_nutrition` to get a full profile including calories, sugar, and caffeine based on drink type, size, sugar level, ice preference, and toppings. It also includes `get_topping_nutrition` for individual ingredient lookups and `validate_customization_params` to ensure your order parameters are valid.

## Tools

### get_topping_nutrition
Retrieves the calorie and sugar information for a specific topping

### validate_customization_params
Checks if a combination of parameters is valid before performing heavy calculations

### calculate_drink_nutrition
Calculates the full nutritional profile of a customized bubble tea order

## Prompt Examples

**Prompt:** 
```
How many calories and how much sugar are in a 500ml milk tea with 70% sugar, no ice, and boba?
```

**Response:** 
```
A 500ml milk tea with 70% sugar, no ice, and boba contains 485.5 calories and 52.3 grams of sugar. Note: This drink exceeds the 50g sugar limit.
```

**Prompt:** 
```
What is the caffeine content of a 400ml fruit tea with normal ice?
```

**Response:** 
```
A 400ml fruit tea with normal ice contains approximately 45mg of caffeine.
```

**Prompt:** 
```
Check if my customization is valid: cheese_tea, 30% sugar, and less_ice.
```

**Response:** 
```
The customization parameters are valid.
```

## Frequently Asked Questions

**How does ice level affect the nutrition calculation?**
If you select `no_ice`, the liquid volume increases by 15% to fill the cup, which proportionally increases the base calories and sugar content.

**Will I get a warning if my drink is too sweet?**
Yes, the `calculate_drink_nutrition` tool triggers a high sugar warning if the total sugar exceeds 50 grams.

**Can I check the calories of a specific topping?**
Yes, you can use the `get_topping_nutrition` tool to retrieve the specific calorie and sugar values for any available topping.
