# Surf Trip Car Packing Optimizer AI Agent Connect

> Calculate if your surfboards will fit in your vehicle trunk using nesting efficiency logic.

## Overview
- **Category:** travel
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_xMYbzBOQCDte7sIFGXQBsY0U3LjrSNMLQa7fH8xn/ai-agent-connect
- **Tags:** surf, packing, vehicle, optimization, travel-planning

## Description

This MCP server provides precise 1D bin packing calculations for surfboards. By accounting for the natural nesting and overlapping of surfboard shapes, it determines if a specific set of boards can fit within a vehicle's trunk length. Use `calculate_packing_feasibility` to check a full set of boards, `get_nesting_config` to see the efficiency factor, or `validate_trunk_capacity` to check a single large board.

## Tools

### get_nesting_config
Retrieve the constant parameters used for nesting calculations

### calculate_packing_feasibility
Determine if a set of surfboards can fit into a specific vehicle trunk

### validate_trunk_capacity
Check if a single large board can fit in a trunk

## Prompt Examples

**Prompt:** 
```
Can I fit three surfboards (180cm, 190cm, and 200cm) in a trunk that is 500cm long?
```

**Response:** 
```
Yes, the boards will fit. The effective required length is 484.5cm, leaving 15.5cm of remaining space.
```

**Prompt:** 
```
Will a 250cm surfboard fit in a 240cm trunk?
```

**Response:** 
```
No, the surfboard will not fit. The effective required length is 212.5cm, but the single board length exceeds the trunk capacity.
```

**Prompt:** 
```
What is the nesting efficiency factor used for these calculations?
```

**Response:** 
```
The nesting efficiency factor is 0.85.
```

## Frequently Asked Questions

**How does the tool account for surfboard shapes?**
The tool uses a nesting efficiency factor of 0.85, which assumes boards can overlap or nest by 15% due to their shape.

**Can I check if a single large surfboard fits?**
Yes, you can use the `validate_trunk_capacity` tool to check if a single board fits in your trunk.

**What inputs are required for the feasibility check?**
You need to provide the total vehicle trunk length in centimeters and an array of the lengths of each surfboard in centimeters.
