get_blueprint_components
Retrieve all SCS and native C++ components of a Blueprint, including class names and modified properties, to inspect component hierarchies and differences from defaults.
Instructions
List all components of a Blueprint (SCS + native C++ components).
For each SCS component the response includes its class name and any properties that differ from the component class defaults.
Args: blueprint_name: Asset name of the Blueprint.
Returns: Dict with 'blueprint', 'count', and 'components' array. Each component entry has: 'name', 'source' ('SCS' or 'NativeC++'), 'class', and optionally 'modified_properties' (dict of prop -> value).
KB: see knowledge_base/01_BLUEPRINT_FUNDAMENTALS.md#overview Example: get_blueprint_components(blueprint_name="/Game/MCP_Test/BP_Example")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| blueprint_name | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |