# Singapore Kopi Decoder AI Agent Connect

> Translates Singaporean coffee shorthand and calculates nutritional data.

## Overview
- **Category:** lifestyle
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_i69tFGldxDktLZ6PtzNnPyy2QuincKJTNmXOu0Fn/ai-agent-connect
- **Tags:** singapore, kopi, nutrition, translator, dietary

## Description

This MCP server acts as a bridge between users and the complex dialect-based shorthand of Singaporean coffee (Kopi) and tea (Teh) culture. It provides tools to translate colloquial orders like 'Kopi C Siew Dai Peng' into standardized English, validate if the order is logically consistent, and estimate calories and sugar reduction based on local health standards. Use `translate_order` to get a formal description, `calculate_nutrition` for calorie estimates, and `validate_order_consistency` to check for conflicting modifiers.

## Tools

### calculate_nutrition
Estimates the nutritional impact of the specific drink order

### translate_order
Translates colloquial Kopi/Teh shorthand into a standardized English description and validates the logic of the request

### validate_order_consistency
A specialized check to ensure the user hasn't provided a contradictory or physically impossible order

## Prompt Examples

**Prompt:** 
```
Translate 'Kopi Kosong Peng' for me.
```

**Response:** 
```
Coffee, no sugar, iced.
```

**Prompt:** 
```
How many calories are in a 'Teh C Siew Dai'?
```

**Response:** 
```
The estimated calorie count for Teh C Siew Dai is 120 calories.
```

**Prompt:** 
```
Is 'Milo Siew Dai Kosong' a valid order?
```

**Response:** 
```
No, that order is invalid because 'Siew Dai' (less sugar) and 'Kosong' (no sugar) are conflicting sugar levels.
```

## Frequently Asked Questions

**What does 'C' mean in a Kopi order?**
'C' indicates that the drink uses evaporated milk instead of the traditional condensed milk.

**How are calories calculated?**
Calories are estimated using the `calculate_nutrition` tool, which applies fixed local health standards to the base liquid and selected modifiers.

**Can I check if my order is valid?**
Yes, you can use the `validate_order_consistency` tool to ensure you haven't requested conflicting modifiers, such as 'Kosong' and 'Siew Dai' together.
