Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion INVENTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ MCP server bridging Claude Code to Unreal Engine 5 via Remote Control API.
UnrealEngine_Bridge/
├── ue_mcp/ # MCP server package
│ ├── __init__.py
│ ├── __version__.py # "2.1.0"
│ ├── __version__.py # "0.2.0"
│ ├── mcp_server.py # FastMCP server + entry point
│ ├── metrics.py # Counters + latency tracking
│ └── tools/ # 11 tool modules
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@ public UEBridgeEditor(ReadOnlyTargetRules Target) : base(Target)
});

PublicDefinitions.Add("WITH_USD_SUPPORT=1");
PublicDefinitions.Add("BRIDGE_VERSION=TEXT(\"2.1.0\")");
PublicDefinitions.Add("BRIDGE_VERSION=TEXT(\"0.2.0\")");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -864,7 +864,7 @@ FUEBridgeProfile UUEBridgeSubsystem::ParseCognitiveProfile(const FString& UsdPat

BridgeLog(FString::Printf(TEXT("Parsing cognitive profile from: %s"), *UsdPath));
Profile.UsdExportPath = UsdPath;
Profile.GeneratorVersion = TEXT("2.1.0");
Profile.GeneratorVersion = TEXT("0.2.0");

// Parse checksum
{
Expand Down
6 changes: 3 additions & 3 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Security Policy

UnrealEngine_Bridge is an MCP server that bridges Claude Code to Unreal Engine
5.7. Because it can spawn actors, set properties, execute editor Python, and
5.8. Because it can spawn actors, set properties, execute editor Python, and
read the viewport on your behalf, it is a powerful tool that runs against a live
editor. This document explains the trust model it is designed for, how to deploy
it safely, and how to report a security issue.
Expand All @@ -19,8 +19,8 @@ still reproduces.
| Latest tagged release | :white_check_mark: | Receives backported fixes for high-severity issues when feasible. |
| Older releases / forks | :x: | Unmaintained. Please upgrade to the latest release or `master`. |

**Runtime baseline.** The bridge targets **Unreal Engine 5.7** (`EngineVersion`
5.7.0 in both bundled `.uplugin` files) and **Python 3.11 or newer** for the MCP
**Runtime baseline.** The bridge targets **Unreal Engine 5.8** (`EngineVersion`
5.8.0 in both bundled `.uplugin` files) and **Python 3.11 or newer** for the MCP
server and Python bridge. Issues that only reproduce on unsupported engine
versions or older Python runtimes may be closed as out of scope, though the
report is still welcome.
Expand Down
Loading