Skip to content

Installation

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 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.

  1. Close the Unreal Editor.

  2. Unzip ConductorTerminal_5.8.zip so that ConductorTerminal.uplugin ends up at:

    <YourProject>/Plugins/ConductorTerminal/ConductorTerminal.uplugin

    Create the Plugins folder if your project does not have one.

  3. Reopen the project. If prompted to rebuild modules, accept.

Open Edit → Plugins and search for Conductor Terminal. It should appear under Developer Tools, enabled, version 1.0.0, by Reality Shift LLC.

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.

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.

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.

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.

Terminal window
winget install marlocarlo.psmux

Or 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.