# Wine Virtual Tasting Kit Sizing AI Agent Connect

> Calculate logistics, volume, and per-person pricing for virtual wine tasting kits.

## Overview
- **Category:** logistics
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_NElhgJiIBFFGC3WapKoEPrTnXCqsHoSIDkM4znG9/ai-agent-connect
- **Tags:** wine, tasting, logistics, pricing, event-planning

## Description

This MCP server provides specialized tools for event planners and wine distributors to manage the logistics of virtual tasting events. It calculates total wine volume requirements using `calculate_wine_volume`, estimates packaging costs and weight with `estimate_packaging_needs`, determines shipping fees via `calculate_shipping_logistics`, and consolidates all data into a final per-person price using `generate_kit_pricing`. It helps balance the luxury of different tasting formats--from 50ml samples to full 750ml bottles--against shipping weights and costs.

## Tools

### estimate_packaging_needs
Calculates the total cost and quantity of packaging materials required to secure the wine

### generate_kit_pricing
Consolidates all variables to provide the final per-person price for the virtual kit

### calculate_wine_volume
Determines the total amount of wine required for the entire group based on the chosen format

### calculate_shipping_logistics
Estimates the cost of transporting the kits to the event destination

## Prompt Examples

**Prompt:** 
```
How much wine do I need for 50 people if each person gets a 100ml pour?
```

**Response:** 
```
You will need a total of 5000ml of wine for 50 participants.
```

**Prompt:** 
```
Calculate the total kit price for 20 people with a total wine cost of $400, packaging of $100, and shipping of $150.
```

**Response:** 
```
The final price per kit is $32.50, and the total event cost is $650.00.
```

**Prompt:** 
```
What is the total weight of packaging for 100 kits if each unit costs $2.50 to package?
```

**Response:** 
```
The total packaging cost is $250.00.
```

## Frequently Asked Questions

**What volume options are supported for the tasting kits?**
The system supports three formats: 50ml (Micro Tier), 100ml (Standard Tier), and 750ml (Premium Tier).

**How does the tool calculate the final price per person?**
The `generate_kit_pricing` tool sums the total wine cost, packaging cost, and shipping cost, then divides that total by the number of participants.

**Can I estimate shipping costs for different regions?**
Yes, you can use `calculate_shipping_logistics` to estimate costs for the USA and Europe based on the total weight of the shipment.
