601 B
601 B
BlueprintMCP TODO
-
When compiling blueprints, always check for errors properly. Many handlers call
FKismetEditorUtilities::CompileBlueprintand assume success without checking. The validation handler (MCPHandlers_Validation.h) already has proper error collection logic — all compile sites should follow that pattern. -
Add
FindBlueprintGraphtoUMCPAssetFinder: load blueprint, URL-decode graph name, search all graphs by name, returnUEdGraph*or nullptr with error. Currently ~10 handlers duplicate this 25-line pattern (seeMCPHandlers_Mutation.h:186-210for a typical example).