Unity Editor MCP Server

select_object

Sets the selected object in the Unity editor by path or ID

Input Schema

NameRequiredDescriptionDefault
objectPathYesThe path or ID of the object to select (e.g. "Main Camera" or a Unity object ID)

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "objectPath": { "description": "The path or ID of the object to select (e.g. \"Main Camera\" or a Unity object ID)", "type": "string" } }, "required": [ "objectPath" ], "type": "object" }