# Jump Height Estimation AI Agent Connect

> Physics engine for kiteboarding jump metrics.

## Overview
- **Category:** simulation
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_4N7WHrTPFOhRELJ2jjOSkCdVRcCOaYKT7Umrh4rQ/ai-agent-connect
- **Tags:** kiteboarding, physics, aerodynamics, sports-science, simulation

## Description

This MCP server provides a specialized physics engine for kiteboarders to simulate jump trajectories. By modeling projectile motion with kite-driven lift and aerodynamic drag, it allows users to calculate critical flight data. Use `calculate_jump_metrics` to get a full profile including maximum height and hang time, `analyze_lift_efficiency` to understand kite lift contribution, `estimate_landing_impact` to evaluate landing safety, or `compare_jump_scenarios` to evaluate different takeoff conditions.

## Tools

### analyze_lift_efficiency
Determines how much of the jump's height is attributed to kite lift versus pure projectile motion

### calculate_jump_metrics
Provides a full profile of the jump based on the initial takeoff conditions

### compare_jump_scenarios
Compares two different sets of takeoff conditions to see which yields a higher jump

### estimate_landing_impact
Evaluates the safety/intensity of the landing based on the flight trajectory

## Prompt Examples

**Prompt:** 
```
Calculate the jump metrics for a 75kg rider with a kite speed of 15m/s, a 30 degree takeoff angle, and a kite position of 5m.
```

**Response:** 
```
The maximum height reached is 4.2 meters with a total hang time of 1.8 seconds and a landing speed of 12.5 m/s.
```

**Prompt:** 
```
Is a landing with a 15m/s speed and 85kg weight considered high risk?
```

**Response:** 
```
Yes, the landing is flagged as high risk due to the high impact force estimated for that weight and speed.
```

**Prompt:** 
```
How much does the kite lift contribute to my jump height?
```

**Response:** 
```
The kite lift contributes approximately 35% to the total height compared to a standard ballistic jump.
```

## Frequently Asked Questions

**What data is needed for a jump calculation?**
You need to provide the kite speed, rider weight, takeoff angle, and the relative vertical position of the kite.

**How does the engine account for the kite?**
The engine uses `analyze_lift_efficiency` logic to model how kite lift counters gravity and extends hang time.

**Can I compare two different jumps?**
Yes, you can use `compare_jump_scenarios` to see which set of takeoff conditions results in a higher maximum height.
