# Kite Jump Parabola AI Agent Connect

> Physics engine for modeling kiteboarder jump trajectories.

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

## Description

This MCP server provides a high-fidelity physics engine to model the parabolic trajectory of a kiteboarder. By integrating projectile motion with continuous kite lift and redirection forces, it allows AI agents to calculate precise jump profiles. Use `calculate_jump_trajectory` to get a full path analysis, `get_max_height` to find peak altitude, or `get_landing_metrics` to predict impact distance and speed. It is ideal for simulating how different takeoff velocities and kite lift forces affect a rider's flight.

### Available Tools

`calculateJumpTrajectoryTool`, `getMaxHeightTool`, `getLandingMetricsTool`, `compareJumpScenariosTool`, `calculateJumpTrajectory`, `getMaxHeight`, `getLandingMetrics`, `compareJumpScenarios`

## Tools

### compareJumpScenarios
Answers "Which setup (different kite or weight) results in a higher/longer jump?"

### getLandingMetrics
Answers "Where will the rider land and how hard will it be?"

### getMaxHeight
Answers "How high will the rider go?"

### calculateJumpTrajectory
Provides a full physical profile of the jump, including the path taken and key performance metrics

## Prompt Examples

**Prompt:** 
```
Calculate the full trajectory for a rider with 15 m/s takeoff velocity, 30 degree angle, 400N kite lift, and 75kg weight.
```

**Response:** 
```
The rider will reach a maximum height of 8.4 meters and travel a total horizontal distance of 22.5 meters, landing with a velocity of 14.2 m/s.
```

**Prompt:** 
```
How high will a rider go with 12 m/s velocity, 45 degree angle, 300N lift, and 80kg weight?
```

**Response:** 
```
The maximum height reached will be 5.2 meters.
```

**Prompt:** 
```
Where will the rider land if they take off at 10 m/s at a 20 degree angle with 200N lift and 70kg weight?
```

**Response:** 
```
The rider will land 12.8 meters from the takeoff point with an impact speed of 9.5 m/s.
```

## Frequently Asked Questions

**How does the kite lift affect the jump?**
The kite lift acts as a continuous upward force that reduces the net downward acceleration caused by gravity, allowing for higher and longer jumps. Tools available: `calculateJumpTrajectoryTool`, `getMaxHeightTool`, `getLandingMetricsTool`.

**Can I compare two different jump setups?**
Yes, you can use the comparison tool to evaluate different takeoff velocities, angles, or kite lift values to see which configuration produces a superior jump.

**What inputs are required for a trajectory calculation?**
You need to provide the takeoff velocity, takeoff angle, kite lift force, and the rider's weight.
