Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/chongdashu/unreal-mcp
/ functions
Functions
163 in github.com/chongdashu/unreal-mcp
⨍
Functions
163
◇
Types & classes
29
Method
HandleSetTextBlockBinding
MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Private/Commands/UnrealMCPUMGCommands.cpp:444
Method
HandleSpawnActor
MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Private/Commands/UnrealMCPEditorCommands.cpp:127
Method
HandleSpawnBlueprintActor
MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Private/Commands/UnrealMCPEditorCommands.cpp:399
Method
HandleSpawnBlueprintActor
MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Private/Commands/UnrealMCPBlueprintCommands.cpp:853
Method
HandleTakeScreenshot
MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Private/Commands/UnrealMCPEditorCommands.cpp:563
Method
Init
MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Private/MCPServerRunnable.cpp:30
Method
Initialize
Initialize subsystem
MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Private/UnrealMCPBridge.cpp:84
Method
IsAvailable
MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Public/UnrealMCPModule.h:18
Function
IsRunning
MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Public/UnrealMCPBridge.h:42
Method
MCPGameProject
(ReadOnlyTargetRules Target)
MCPGameProject/Source/MCPGameProject/MCPGameProject.Build.cs:7
Method
MCPGameProjectEditorTarget
( TargetInfo Target)
MCPGameProject/Source/MCPGameProjectEditor.Target.cs:8
Method
MCPGameProjectTarget
(TargetInfo Target)
MCPGameProject/Source/MCPGameProject.Target.cs:8
Method
ProcessMessage
MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Private/MCPServerRunnable.cpp:272
Method
Run
MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Private/MCPServerRunnable.cpp:35
Method
SetObjectProperty
MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Private/Commands/UnrealMCPCommonUtils.cpp:512
Method
ShutdownModule
MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Private/UnrealMCPModule.cpp:14
Method
StartServer
Start the MCP server
MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Private/UnrealMCPBridge.cpp:107
Method
StartupModule
MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Private/UnrealMCPModule.cpp:9
Method
Stop
MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Private/MCPServerRunnable.cpp:158
Method
StopServer
Stop the MCP server
MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Private/UnrealMCPBridge.cpp:170
Method
UUnrealMCPBridge
MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Private/UnrealMCPBridge.cpp:65
Method
UnrealMCP
(ReadOnlyTargetRules Target)
MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/UnrealMCP.Build.cs:7
Method
__init__
Initialize the connection.
Python/unreal_mcp_server.py:33
Function
add_blueprint_event_node
Add an event node to a Blueprint's event graph. Args: blueprint_name: Name of the target Blueprint e
Python/tools/node_tools.py:18
Function
add_blueprint_function_node
Add a function call node to a Blueprint's event graph. Args: blueprint_name: Name of the target Blueprint
Python/tools/node_tools.py:123
Function
add_blueprint_get_self_component_reference
Add a node that gets a reference to a component owned by the current Blueprint. This creates a node similar to what you get when drag
Python/tools/node_tools.py:285
Function
add_blueprint_input_action_node
Add an input action event node to a Blueprint's event graph. Args: blueprint_name: Name of the target Blueprint
Python/tools/node_tools.py:72
Function
add_blueprint_self_reference
Add a 'Get Self' node to a Blueprint's event graph that returns a reference to this actor. Args: blueprint_name:
Python/tools/node_tools.py:337
Function
add_blueprint_variable
Add a variable to a Blueprint. Args: blueprint_name: Name of the target Blueprint variable_name: Nam
Python/tools/node_tools.py:235
Function
add_button_to_widget
Add a Button widget to a UMG Widget Blueprint. Args: widget_name: Name of the target Widget Blueprint
Python/tools/umg_tools.py:124
Function
add_component_to_blueprint
Add a component to a Blueprint. Args: blueprint_name: Name of the target Blueprint component_type: T
Python/tools/blueprint_tools.py:51
Function
add_text_block_to_widget
Add a Text Block widget to a UMG Widget Blueprint. Args: widget_name: Name of the target Widget Blueprint
Python/tools/umg_tools.py:65
Function
add_widget_to_viewport
Add a Widget Blueprint instance to the viewport. Args: widget_name: Name of the Widget Blueprint to add
Python/tools/umg_tools.py:240
Function
bind_widget_event
Bind an event on a widget component to a function. Args: widget_name: Name of the target Widget Blueprint
Python/tools/umg_tools.py:186
Function
compile_blueprint
Compile a Blueprint.
Python/tools/blueprint_tools.py:254
Function
connect_blueprint_nodes
Connect two nodes in a Blueprint's event graph. Args: blueprint_name: Name of the target Blueprint s
Python/tools/node_tools.py:182
Function
create_blueprint
Create a new Blueprint class.
Python/tools/blueprint_tools.py:18
Function
create_input_mapping
Create an input mapping for the project. Args: action_name: Name of the input action key: Key to bin
Python/tools/project_tools.py:18
Function
create_umg_widget_blueprint
Create a new UMG Widget Blueprint. Args: widget_name: Name of the widget blueprint to create parent_
Python/tools/umg_tools.py:18
Function
delete_actor
Delete an actor by name.
Python/tools/editor_tools.py:147
Function
find_actors_by_name
Find actors by name pattern.
Python/tools/editor_tools.py:55
Function
find_blueprint_nodes
Find nodes in a Blueprint's event graph. Args: blueprint_name: Name of the target Blueprint node_typ
Python/tools/node_tools.py:384
Function
focus_viewport
Focus the viewport on a specific actor or location. Args: target: Name of the actor to focus on (if provided, lo
Python/tools/editor_tools.py:263
Function
get_actor_properties
Get all properties of an actor.
Python/tools/editor_tools.py:199
Function
get_actors_in_level
Get a list of all actors in the current level.
Python/tools/editor_tools.py:18
Function
info
Information about available Unreal MCP tools and best practices.
Python/unreal_mcp_server.py:283
Function
server_lifespan
Handle server startup and shutdown.
Python/unreal_mcp_server.py:239
Function
set_actor_property
Set a property on an actor. Args: name: Name of the actor property_name: Name of the property to set
Python/tools/editor_tools.py:219
Function
set_actor_transform
Set the transform of an actor.
Python/tools/editor_tools.py:167
Function
set_blueprint_property
Set a property on a Blueprint class default object. Args: blueprint_name: Name of the target Blueprint
Python/tools/blueprint_tools.py:287
Function
set_component_property
Set a property on a component in a Blueprint.
Python/tools/blueprint_tools.py:170
Function
set_pawn_properties
Set common Pawn properties on a Blueprint. This is a utility function that sets multiple pawn-related properties at once.
Python/tools/blueprint_tools.py:334
Function
set_physics_properties
Set physics properties on a component.
Python/tools/blueprint_tools.py:209
Function
set_static_mesh_properties
Set static mesh properties on a StaticMeshComponent. Args: blueprint_name: Name of the target Blueprint
Python/tools/blueprint_tools.py:123
Function
set_text_block_binding
Set up a property binding for a Text Block widget. Args: widget_name: Name of the target Widget Blueprint
Python/tools/umg_tools.py:284
Function
spawn_actor
Create a new actor in the current level. Args: ctx: The MCP context name: The name to give the new actor (mus
Python/tools/editor_tools.py:79
Function
spawn_blueprint_actor
Spawn an actor from a Blueprint. Args: ctx: The MCP context blueprint_name: Name of the Blueprint to spawn fr
Python/tools/editor_tools.py:310
Function
test_collision_components
Test creating blueprints with different collision components.
Python/scripts/blueprints/test_create_and_spawn_blueprints_with_different_components.py:321
Function
test_scene_component_hierarchy
Test creating a blueprint with a hierarchy of scene components.
Python/scripts/blueprints/test_create_and_spawn_blueprints_with_different_components.py:378
Function
test_static_mesh_components
Test creating blueprints with different static mesh components.
Python/scripts/blueprints/test_create_and_spawn_blueprints_with_different_components.py:227
Method
~FMCPServerRunnable
MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Private/MCPServerRunnable.cpp:25
Method
~FScopeGuard
MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Private/Commands/UnrealMCPBlueprintCommands.cpp:411
Method
~UUnrealMCPBridge
MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Private/UnrealMCPBridge.cpp:74
← previous
101–163 of 163, ranked by callers