Installation
Requirements
Section titled “Requirements”| Unreal Engine | 5.8.0 or later |
| Platform | Windows 64-bit only |
| Windows version | Windows 10 build 18362 (version 1903) or later — required for ConPTY |
| For WSL shells | Windows 10 build 19041 (version 2004) or later |
| Required plugins | ToolsetRegistry and ModelContextProtocol (both ship with UE 5.8) |
| Optional | psmux or tmux, for persistent multiplexed workspaces |
Install the plugin
Section titled “Install the plugin”From Fab
Section titled “From Fab”Install Conductor Terminal to your engine version from the Epic Games Launcher, then enable it in
your project. The launcher places it under
<EngineRoot>/Engine/Plugins/Marketplace/ConductorTerminal.
From a zip
Section titled “From a zip”-
Close the Unreal Editor.
-
Unzip
ConductorTerminal_5.8.zipso thatConductorTerminal.upluginends up at:<YourProject>/Plugins/ConductorTerminal/ConductorTerminal.upluginCreate the
Pluginsfolder if your project does not have one. -
Reopen the project. If prompted to rebuild modules, accept.
Verify it loaded
Section titled “Verify it loaded”Open Edit → Plugins and search for Conductor Terminal. It should appear under Developer Tools, enabled, version 1.0.0, by Reality Shift LLC.
Enable the MCP dependencies
Section titled “Enable the MCP dependencies”Conductor Terminal’s agent features are built on Epic’s own MCP stack. Two engine plugins have to be enabled:
- Model Context Protocol — the local MCP server the editor exposes.
- Toolset Registry — the registry the plugin publishes its agent tools into.
Both are listed as dependencies in the .uplugin, so enabling Conductor Terminal normally enables
them for you. If they are not on, the plugin’s setup panel will say so and offer a Fix button
for each problem it finds:
| Check | What it means |
|---|---|
| MCP plugin enabled | ModelContextProtocol is on in the project. |
| Auto Start Server | The MCP server starts with the editor rather than waiting to be started by hand. |
| Toolsets enabled | Epic’s toolset plugins (the AllToolsets aggregator) are on, so the agent gets the full editor surface and not just Conductor Terminal’s tools. |
Server address
Section titled “Server address”On UE 5.8+ the editor’s MCP server is configured under Project Settings → Plugins → Model Context Protocol:
| Setting | Default |
|---|---|
| Server Port Number | 8000 |
| Server URL Path | /mcp |
Which gives an endpoint of http://127.0.0.1:8000/mcp. Conductor Terminal reads these values
rather than assuming them, so if you change the port the generated agent configs follow.
First run
Section titled “First run”Open the terminal from Window → Tools → Terminal → Terminal 1, or press Alt+F2 to flick open
the status-bar drawer. You should get a shell prompt in your project directory.
If you get a blank pane or an error instead, head to Troubleshooting.
Optional: install psmux
Section titled “Optional: install psmux”psmux is a Windows-native, PowerShell-based terminal multiplexer. It is not bundled and the plugin will never install it for you. You only need it if you want PSMux Workspace mode, where shells keep running in the background and survive an editor restart.
winget install marlocarlo.psmuxOr download it from github.com/psmux/psmux. If you prefer to work inside WSL, tmux inside the distribution does the same job.
Once installed, the plugin picks it up automatically via PATH, where.exe and the usual install
locations. Open a new session to use it — no reinstall required.
Next: Quick Start.