# Board Rocker Curve Analyzer AI Agent Connect

> Calculate precise surfboard rocker curves and performance profiles.

## Overview
- **Category:** design
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_zqfX7Zqkg8I6yJ8Nm1zKu6n3Hti0w9f78BZevuRQ/ai-agent-connect
- **Tags:** surfboard, rocker, geometry, parabola, shaping

## Description

This MCP server provides deterministic tools for surfboard shaping and design. Use `analyze_rocker_geometry` to calculate the parabolic equation ($y = ax^2 + bx + c$), mid-point rocker, and rocker ratio based on nose and tail measurements. You can also use `get_performance_profile` to categorize the board's intended use, such as Speed/Paddling, All-around, or Steep waves/Turns, and `validate_rocker_inputs` to ensure dimensions are realistic for manufacturing.

## Tools

### analyze_rocker_geometry
Calculates the primary geometric attributes and the mathematical parabolic equation of the surfboard

### get_performance_profile
Identifies the intended surfboard category based on the calculated rocker arc

### validate_rocker_inputs
Checks if the provided physical dimensions are realistic for surfboard manufacturing

## Prompt Examples

**Prompt:** 
```
Calculate the rocker geometry for a 6ft surfboard with 2 inches of nose rocker and 1.5 inches of tail rocker.
```

**Response:** 
```
The parabolic equation is $y = -0.0012x^2 + 0.015x + 1.75$, the mid-point rocker is 2.0 inches, the total rocker arc is 3.5 inches, the rocker ratio is 0.058, and the performance profile is All-around.
```

**Prompt:** 
```
What is the performance profile for a board with a total rocker arc of 2 inches?
```

**Response:** 
```
A board with a 2-inch total rocker arc has a Speed/Paddling performance profile.
```

**Prompt:** 
```
Check if a 100-inch board with 10 inches of nose rocker and 10 inches of tail rocker is valid.
```

**Response:** 
```
The dimensions are invalid as the total rocker arc exceeds the maximum allowable percentage for a board of this length.
```

## Frequently Asked Questions

**How do I calculate the parabolic equation for my board?**
You can use the `analyze_rocker_geometry` tool. Provide the board length, nose rocker, and tail rocker to receive the exact $y = ax^2 + bx + c$ equation.

**What determines the performance profile of a surfboard?**
The performance profile is determined by the total rocker arc. The `get_performance_profile` tool categorizes boards into Speed/Paddling, All-around, or Steep waves/Turns based on this arc.

**Can I validate if my rocker measurements are realistic?**
Yes, the `validate_rocker_inputs` tool checks if your provided nose and tail rocker measurements are within standard industry bounds for the given board length.
