ultimate-unreal-engine-mcp 0.1.4 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -49,7 +49,9 @@ npx ultimate-unreal-engine-mcp setup --client cursor
|
|
|
49
49
|
npx ultimate-unreal-engine-mcp setup --project "C:/MyGame"
|
|
50
50
|
```
|
|
51
51
|
|
|
52
|
-
This command writes the correct config for your client. The C++ plugin is optional — file
|
|
52
|
+
This command writes the correct config for your client. The C++ plugin is optional — file-system tools (C++ parsing, code gen, configs, builds, docs) work without it. Install the plugin for live editor tools (Blueprints, actors, viewport, screenshots).
|
|
53
|
+
|
|
54
|
+
> **Zero optional dependencies.** The C++ plugin compiles on any UE 5.7 install — binary or source. All 129 tools use runtime reflection for optional UE modules (MetaSound, LiveLink, GAS, etc.), so the plugin loads regardless of which plugins your project has enabled. Handlers gracefully report when their target module isn't available.
|
|
53
55
|
|
|
54
56
|
---
|
|
55
57
|
|
|
@@ -557,6 +559,8 @@ Some tools work without the UE Editor running. Others require the MCPBridge plug
|
|
|
557
559
|
|
|
558
560
|
The TypeScript server starts in headless mode by default. Tools that require the plugin return a structured `plugin_not_connected` error with a clear message — they never silently fail.
|
|
559
561
|
|
|
562
|
+
When the plugin IS running but an optional UE module isn't enabled (e.g., MetaSound, LiveLink, GAS), the handler returns `module_not_available` with the module name — no crash, no missing DLL errors. Enable the plugin in your project settings and the handler starts working automatically.
|
|
563
|
+
|
|
560
564
|
---
|
|
561
565
|
|
|
562
566
|
## Installation
|