# Surfboard Volume & Suitability Calculator AI Agent Connect

> Calculate precise surfboard displacement volume and ideal buoyancy ratios.

## Overview
- **Category:** utility
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_aRqdvJGj1mVn40QUNTNch0guu7QAuisaQZs6HiH8/ai-agent-connect
- **Tags:** surfing, volume, buoyancy, calculator, equipment

## Description

This MCP server provides deterministic calculations for surfboard displacement and buoyancy. Use `calculate_board_volume` to find the exact liters based on dimensions and silhouette, and `evaluate_suitability` to determine if a board matches a surfer's weight and skill level. It also includes `get_shape_factor` to retrieve volumetric multipliers for different board types.

## Tools

### calculate_board_volume
Calculates the total liquid volume of a specific surfboard design

### evaluate_suitability
Determines if a surfboard's buoyancy is appropriate for a specific surfer's weight and skill level

### get_shape_factor
Retrieves the specific volumetric multiplier for a given board type

## Prompt Examples

**Prompt:** 
```
What is the volume of a shortboard that is 60 inches long, 20 inches wide, and 2.5 inches thick?
```

**Response:** 
```
The volume of the shortboard is 16.2 liters.
```

**Prompt:** 
```
Is a 45-liter board suitable for a 75kg intermediate surfer?
```

**Response:** 
```
The volume-to-weight ratio is 0.60. For an intermediate surfer, the recommended range is 0.40 to 0.50, so this board is not recommended.
```

**Prompt:** 
```
What is the shape factor for a fish surfboard?
```

**Response:** 
```
The shape factor for a fish surfboard is 0.58.
```

## Frequently Asked Questions

**How is the surfboard volume calculated?**
The volume is calculated by multiplying length, width, and thickness, then applying a specific shape factor for the board type (e.g., shortboard, fish, funboard, or longboard) and scaling to liters.

**What is a volume-to-weight ratio?**
It is the amount of buoyancy in liters available per kilogram of the surfer's body mass, used to determine if a board is suitable for their skill level.

**Can I check if a board is right for my skill level?**
Yes, use the `evaluate_suitability` tool with your weight and skill level to see if the board's volume falls within the recommended range.
