Back to Search

neonia_aero_powertrain_matcher

v0.1.0

AeroCraft AI: Powertrain matcher. Selects motor, ESC, battery, and propeller with safety checks for ESC headroom, battery C-rate, and thermal limits.

$0.008 / call (Standard Tier)
Updated: Unknown

Overview

Powertrain selection tool for UAV design (motor, ESC, battery, propeller). Pass your payload weight, endurance target, and weight budget. Returns optimal motor/ESC/battery/prop combo with safety-checked headroom and C-rates.

Example Input

JSON payload sent to this tool:

{
  "payload_mass_kg": 1.2,
  "target_endurance_min": 60,
  "cruise_speed_kmh": 65,
  "max_weight_budget_g": 650,
  "battery_chemistry": "LiPo",
  "airframe_type": "conventional"
}

Example Output

Formatted JSON response returned by this tool:

{
  "motor": { "name": "NE3542-650KV", "kv_rpm_per_v": 650.0, "weight_g": 180.0, "max_current_a": 45.0, "efficiency_pct": 88.0 },
  "esc": { "name": "BLHeli32-45A", "continuous_a": 67.5, "peak_a": 101.2, "firmware": "BLHeli_32" },
  "battery": { "name": "GNB 65C", "chemistry": "LiPo", "cell_count_s": 4, "capacity_mah": 195, "voltage_v": 14.8 },
  "propeller": { "name": "10x6", "diameter_in": 10.0, "pitch_in": 6.0, "material": "APC_E-Custom" },
  "endurance_min": 42.5,
  "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_powertrain_matcher",
      "headers": {
        "Authorization": "Bearer API_KEY"
      }
    }
  }
}