Unity Editor MCP Server

execute_menu_item

Executes a Unity menu item by path

Input Schema

NameRequiredDescriptionDefault
menuPathYesThe path to the menu item to execute (e.g. "GameObject/Create Empty")

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "menuPath": { "description": "The path to the menu item to execute (e.g. \"GameObject/Create Empty\")", "type": "string" } }, "required": [ "menuPath" ], "type": "object" }