Back to Search
neonia_aero_openvsp_exporter
v0.1.0AeroCraft AI: OpenVSP exporter. Generates parametric .vsp3 geometry XML from design parameters.
$0.010 / call (Standard Tier)
Updated: Unknown
Overview
OpenVSP geometry generator. Pass your aircraft design parameters and get a .vsp3 XML model file with wings, fuselage, and tail surfaces optimized for the mission.
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:
{
"vsp_uri": "data:model/vsp.vsp3;base64,PD94bWwgdmVyc2lv...",
"geometry": {
"wingspan_m": 1.43,
"wing_area_m2": 0.255,
"aspect_ratio": 8.0,
"mac_m": 0.178,
"fuselage_length_m": 0.357,
"tail_volume_vh": 0.45,
"static_margin": 0.02
},
"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_openvsp_exporter",
"headers": {
"Authorization": "Bearer API_KEY"
}
}
}
}