Back to Search

neonia_aero_fixedwing_sizing

v0.1.0

AeroCraft AI: Fixed-wing sizing tool. Calculates MTOW, wing area, aspect ratio, stall speed, and static margin with safety boundaries.

$0.005 / call (Standard Tier)
Updated: Unknown

Overview

Fixed-wing aircraft sizing tool for UAV design. Pass your payload weight, target endurance, cruise speed, and launch method. Returns recommended wingspan, wing area, aspect ratio, and stall speed.

Example Input

JSON payload sent to this tool:

{
  "payload_mass_kg": 1.2,
  "target_endurance_min": 60,
  "cruise_speed_kmh": 65,
  "max_wingspan_m": 2.0,
  "launch_method": "hand_launch",
  "airframe_type": "conventional"
}

Example Output

Formatted JSON response returned by this tool:

{
  "mtow_kg": 2.45,
  "wing_area_m2": 0.312,
  "wingspan_m": 1.6,
  "aspect_ratio": 8.0,
  "mac_m": 0.195,
  "cruise_cl": 0.45,
  "stall_speed_ms": 9.8,
  "static_margin_pct": 2.0,
  "aerodynamic_center_m": 0.049,
  "weight_margin_pct": 15.3,
  "endurance_margin_pct": 12.0,
  "warnings": []
}

Setup Configuration

Add the following configuration to your MCP general settings or mcp_config.json:

{
  "mcpServers": {
    "neonia": {
      "serverUrl": "https://mcp.neonia.io/mcp?tools=neonia_aero_fixedwing_sizing",
      "headers": {
        "Authorization": "Bearer API_KEY"
      }
    }
  }
}