blueprint-extractor-mcp 6.0.5 → 6.0.6

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 CHANGED
@@ -69,7 +69,7 @@ Connects to the editor at `127.0.0.1:30010` by default.
69
69
  ```bash
70
70
  claude mcp add -s user -t stdio blueprint-extractor \
71
71
  -e UE_REMOTE_CONTROL_PORT=30010 \
72
- -- npx -y blueprint-extractor-mcp@6.0.5
72
+ -- npx -y blueprint-extractor-mcp@6.0.6
73
73
  ```
74
74
 
75
75
  </td></tr>
@@ -78,7 +78,7 @@ claude mcp add -s user -t stdio blueprint-extractor \
78
78
 
79
79
  ```bash
80
80
  codex mcp add --env UE_REMOTE_CONTROL_PORT=30010 \
81
- blueprint-extractor -- npx -y blueprint-extractor-mcp@6.0.5
81
+ blueprint-extractor -- npx -y blueprint-extractor-mcp@6.0.6
82
82
  ```
83
83
 
84
84
  </td></tr>
@@ -69,7 +69,7 @@ export function registerStaticDocResources(server) {
69
69
  '- AnimSequence: notify selector by notifyId/notifyGuid with notifyIndex or track metadata as fallback; operations replace_notifies, patch_notify, replace_sync_markers, replace_curve_metadata.',
70
70
  '- AnimMontage: notify selector by notifyId/notifyGuid with notifyIndex or track metadata as fallback; operations replace_notifies, patch_notify, replace_sections, replace_slots.',
71
71
  '- BlendSpace: sample selector by sampleIndex; operations replace_samples, patch_sample, set_axes.',
72
- '- Blueprint members: selectors by variableName, componentName, and functionName; operations replace_variables, patch_variable, replace_components, patch_component, add_component, replace_function_stubs, patch_class_defaults, compile.',
72
+ '- Blueprint members: selectors by variableName, componentName, and functionName; operations replace_variables, patch_variable, replace_components, patch_component, add_component, replace_function_stubs, reparent, patch_class_defaults, compile. Reparenting uses payload.parentClassPath, and payload.parent_class_path is accepted as an alias.',
73
73
  '- Blueprint graphs: operation upsert_function_graphs preserves unrelated graphs; append_function_call_to_sequence patches an existing sequence-style initializer without replacing the whole graph.',
74
74
  '',
75
75
  'WidgetBlueprint guidance:',
@@ -1859,7 +1859,7 @@ export declare const StateTreeMutationOperationSchema: z.ZodEnum<["replace_tree"
1859
1859
  export declare const AnimSequenceMutationOperationSchema: z.ZodEnum<["replace_notifies", "patch_notify", "replace_sync_markers", "replace_curve_metadata"]>;
1860
1860
  export declare const AnimMontageMutationOperationSchema: z.ZodEnum<["replace_notifies", "patch_notify", "replace_sections", "replace_slots"]>;
1861
1861
  export declare const BlendSpaceMutationOperationSchema: z.ZodEnum<["replace_samples", "patch_sample", "set_axes"]>;
1862
- export declare const BlueprintMemberMutationOperationSchema: z.ZodEnum<["replace_variables", "patch_variable", "replace_components", "patch_component", "add_component", "replace_function_stubs", "patch_class_defaults", "compile"]>;
1862
+ export declare const BlueprintMemberMutationOperationSchema: z.ZodEnum<["replace_variables", "patch_variable", "replace_components", "patch_component", "add_component", "replace_function_stubs", "reparent", "patch_class_defaults", "compile"]>;
1863
1863
  export declare const BlueprintGraphMutationOperationSchema: z.ZodEnum<["upsert_function_graphs", "append_function_call_to_sequence", "compile"]>;
1864
1864
  export declare const UserDefinedStructFieldSchema: z.ZodObject<{
1865
1865
  guid: z.ZodOptional<z.ZodString>;
@@ -387,6 +387,7 @@ export const BlueprintMemberMutationOperationSchema = z.enum([
387
387
  'patch_component',
388
388
  'add_component',
389
389
  'replace_function_stubs',
390
+ 'reparent',
390
391
  'patch_class_defaults',
391
392
  'compile',
392
393
  ]);
@@ -43,17 +43,13 @@ export function registerBlueprintAuthoringTools({ server, callSubsystemJson, jso
43
43
  });
44
44
  server.registerTool('modify_blueprint_members', {
45
45
  title: 'Modify Blueprint Members',
46
- description: 'Modify Blueprint member authoring surfaces without synthesizing arbitrary graphs.\n\n'
47
- + 'Example (add_variable):\n'
46
+ description: 'Modify Blueprint member authoring surfaces, including reparenting, without synthesizing arbitrary graphs.\n\n'
47
+ + 'Example (reparent):\n'
48
48
  + ' {\n'
49
49
  + ' "asset_path": "/Game/Blueprints/BP_MyActor",\n'
50
- + ' "operation": "add_variable",\n'
50
+ + ' "operation": "reparent",\n'
51
51
  + ' "payload": {\n'
52
- + ' "variable": {\n'
53
- + ' "name": "Health",\n'
54
- + ' "type": "float",\n'
55
- + ' "defaultValue": "100.0"\n'
56
- + ' }\n'
52
+ + ' "parentClassPath": "/Script/Engine.Pawn"\n'
57
53
  + ' }\n'
58
54
  + ' }',
59
55
  inputSchema: {
@@ -71,6 +67,8 @@ export function registerBlueprintAuthoringTools({ server, callSubsystemJson, jso
71
67
  functionStubs: z.array(jsonObjectSchema).optional(),
72
68
  functions: z.array(jsonObjectSchema).optional(),
73
69
  functionName: z.string().optional(),
70
+ parentClassPath: z.string().optional(),
71
+ parent_class_path: z.string().optional(),
74
72
  classDefaults: jsonObjectSchema.optional(),
75
73
  properties: jsonObjectSchema.optional(),
76
74
  }).passthrough().default({}).describe('Operation payload. Selectors use variableName, componentName, and functionName.'),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "blueprint-extractor-mcp",
3
- "version": "6.0.5",
3
+ "version": "6.0.6",
4
4
  "description": "MCP server for the Unreal Engine BlueprintExtractor plugin over Remote Control",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",