Agent Skills: uloop get-menu-items

Retrieve Unity MenuItems via uloop CLI. Use when you need to: (1) Discover available menu commands in Unity Editor, (2) Find menu paths for automation, (3) Prepare for executing menu items programmatically.

UncategorizedID: hatayama/uLoopMCP/uloop-get-menu-items

Install this agent skill to your local

pnpm dlx add-skill https://github.com/hatayama/uLoopMCP/tree/HEAD/.claude/skills/uloop-get-menu-items

Skill Files

Browse the full folder contents for uloop-get-menu-items.

Download Skill

Loading file tree…

.claude/skills/uloop-get-menu-items/SKILL.md

Skill Metadata

Name
uloop-get-menu-items
Description
"Retrieve Unity MenuItems via uloop CLI. Use when you need to: (1) Discover available menu commands in Unity Editor, (2) Find menu paths for automation, (3) Prepare for executing menu items programmatically."

uloop get-menu-items

Retrieve Unity MenuItems.

Usage

uloop get-menu-items [options]

Parameters

| Parameter | Type | Default | Description | |-----------|------|---------|-------------| | --filter-text | string | - | Filter text | | --filter-type | string | contains | Filter type: contains, exact, startswith | | --max-count | integer | 200 | Maximum number of items | | --include-validation | boolean | false | Include validation functions |

Global Options

| Option | Description | |--------|-------------| | --project-path <path> | Target a specific Unity project (mutually exclusive with --port). Path resolution follows the same rules as cd — absolute paths are used as-is, relative paths are resolved from cwd. | | -p, --port <port> | Specify Unity TCP port directly (mutually exclusive with --project-path). |

Examples

# List all menu items
uloop get-menu-items

# Filter by text
uloop get-menu-items --filter-text "GameObject"

# Exact match
uloop get-menu-items --filter-text "File/Save" --filter-type exact

Output

Returns JSON array of menu items with paths and metadata.

Notes

Use with uloop execute-menu-item to run discovered menu commands.