Open-source MCP servers connecting AI agents to real aerospace tools: aerodynamics, structures, propulsion, and mission design. No approximations. The agent runs the same code you would.
Assembling a design study typically means hand-wiring scripts, moving files, and bug-checking glue. Engineers spend more time on plumbing than concepts.
// the shiftOff-the-shelf, scriptable MDAO infrastructure is changing that. Engineers can direct and review concept work instead of wrestling files and configs.
The Hangar is where these tools live together. Each MDAO tool is defined, tested, and demonstrated in its own package; composition happens through a shared plan format. Every run carries a provenance graph, so engineers lead review instead of chasing files.
hangar-omd is a YAML-first OpenMDAO plan runner. Describe a trade study or MDO problem once; get a reproducible run with recordings, an N2 diagram, a provenance graph, and plots. Today, components from OAS, OCP, and pyCycle compose inside one plan.
A plan describes an OpenMDAO problem without the boilerplate: components, solvers, DVs, constraints, optimizer. Check it into git, re-run it anywhere, diff it against a prior version. The same plan is agent-authorable and human-readable.
Each server wraps a proven open-source analysis tool built on OpenMDAO. Tool calls return structured envelopes with physics validation, artifact references, and a run_id for provenance.
Aerostructural analysis and optimization of lifting surfaces. Couples vortex-lattice aerodynamics with finite-element structures for wing planform design and trade studies.
Aircraft conceptual design and mission analysis. Fuel burn, takeoff performance, and battery state-of-charge across full flight profiles for conventional and hybrid-electric architectures.
Gas turbine engine cycle analysis. Design-point sizing and off-design performance with full thermodynamic station modeling. Turbojet today; HBTF, turboshaft, afterburning, and mixed-flow turbofan archetypes in progress.
One command per server. First connection triggers Keycloak OIDC in the browser.
$ claude mcp add --transport http oas https://mcp.lakesideai.dev/oas/mcp $ claude mcp add --transport http ocp https://mcp.lakesideai.dev/ocp/mcp $ claude mcp add --transport http pyc https://mcp.lakesideai.dev/pyc/mcp
1. claude.ai -> settings -> integrations -> add mcp server
2. Paste the endpoint URL for each tool:
https://mcp.lakesideai.dev/oas/mcp https://mcp.lakesideai.dev/ocp/mcp https://mcp.lakesideai.dev/pyc/mcp
3. Sign in when redirected to Keycloak.
$ codex mcp add oas --url https://mcp.lakesideai.dev/oas/mcp $ codex mcp add ocp --url https://mcp.lakesideai.dev/ocp/mcp $ codex mcp add pyc --url https://mcp.lakesideai.dev/pyc/mcp # authenticate each server $ codex mcp login oas --scopes mcp:tools $ codex mcp login ocp --scopes mcp:tools $ codex mcp login pyc --scopes mcp:tools
omd-cli; MCP server coming soon.The Hangar wraps established aerospace tools as MCP servers so AI agents can call them directly. Agents compute aerodynamic coefficients, structural loads, fuel burn, engine performance, and full mission profiles using the same code an engineer would run locally.
Tools like OpenAeroStruct, OpenConcept, and pyCycle are capable but slow to wield. Building OpenMDAO problems, defining meshes, connecting subsystems, setting solver options, and extracting results takes domain fluency and hours per iteration. Early-stage design exploration is expensive when it should be cheap.
MCP (Model Context Protocol) is an open standard for exposing tools to AI applications with structured input and output. The Hangar uses it to present each analysis tool as a set of callable MCP operations with input validation, physics checks, and versioned result envelopes.
Every tool call returns a versioned envelope: results, physics validation (convergence, bounds, sanity checks), telemetry, and a run_id for provenance. Every run produces an N2 diagram, an OpenMDAO recorder .sql, and a PROV-Agent graph entry. The agent handles setup boilerplate. You stay on the engineering.
End-to-end engineering workflows executed by agents through The Hangar. Each study ships with plots, provenance graph, N2 diagram, and the decisions log.
CD +---+---+---+---+---+ | | | oooo | | oo | | oo | | oo | | oooo | +---+---+---+---+---+ 0 7 14 21 28 iter converged L/D=22.6 m=3000kg
Aerostructural CD-min for an E190-class wing with a structural-mass cap. 28 SLSQP iterations, CL=0.500, L/D=22.6, struct_mass=3000 kg.
King Air twin series-hybrid MDO over range x battery specific energy. Fuel and cost objectives, 5x5 grid run end-to-end through the omd Lane B plan pipeline. Matches paper trends across both objectives.
The Hangar wraps these open-source projects. If you use them in published work, cite the original authors.
The Hangar supports new analysis tools beyond the initial three. The SDK provides shared infrastructure for response envelopes, provenance tracking, validation, and artifact storage, so you can focus on the tool-specific logic.
Check the issues and discussions to see what's being considered, propose new ones, or pick up an existing request.