Skip to main content
Glama

unreal-mcp

editor_create_object

Generate and place new objects/actors in Unreal Engine with specified class, name, location, rotation, scale, and properties. Returns detailed actor data including final transform values.

Instructions

Create a new object/actor in the world

Example output: {'success': true, 'actor_name': 'StaticMeshActor_1', 'actor_label': 'MyCube', 'class': 'StaticMeshActor', 'location': {'x': 100.0, 'y': 200.0, 'z': 0.0}, 'rotation': {'pitch': 0.0, 'yaw': 45.0, 'roll': 0.0}, 'scale': {'x': 1.0, 'y': 1.0, 'z': 1.0}}

Returns created actor details with final transform values.

Input Schema

NameRequiredDescriptionDefault
locationNoWorld position coordinates
object_classYesUnreal class name (e.g., 'StaticMeshActor', 'DirectionalLight')
object_nameYesName/label for the created object
propertiesNoAdditional actor properties. For StaticMeshActor: use 'StaticMesh' for mesh path, 'Material' for single material path, or 'Materials' for array of material paths. Example: {"StaticMesh": "/Game/Meshes/Cube", "Material": "/Game/Materials/M_Basic"}
rotationNoRotation in degrees
scaleNoScale multipliers

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "location": { "additionalProperties": false, "description": "World position coordinates", "properties": { "x": { "default": 0, "type": "number" }, "y": { "default": 0, "type": "number" }, "z": { "default": 0, "type": "number" } }, "type": "object" }, "object_class": { "description": "Unreal class name (e.g., 'StaticMeshActor', 'DirectionalLight')", "type": "string" }, "object_name": { "description": "Name/label for the created object", "type": "string" }, "properties": { "additionalProperties": {}, "description": "Additional actor properties. For StaticMeshActor: use 'StaticMesh' for mesh path, 'Material' for single material path, or 'Materials' for array of material paths. Example: {\"StaticMesh\": \"/Game/Meshes/Cube\", \"Material\": \"/Game/Materials/M_Basic\"}", "type": "object" }, "rotation": { "additionalProperties": false, "description": "Rotation in degrees", "properties": { "pitch": { "default": 0, "type": "number" }, "roll": { "default": 0, "type": "number" }, "yaw": { "default": 0, "type": "number" } }, "type": "object" }, "scale": { "additionalProperties": false, "description": "Scale multipliers", "properties": { "x": { "default": 1, "type": "number" }, "y": { "default": 1, "type": "number" }, "z": { "default": 1, "type": "number" } }, "type": "object" } }, "required": [ "object_class", "object_name" ], "type": "object" }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/runreal/unreal-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server