uloop-get-menu-items
20
总安装量
17
周安装量
#18205
全站排名
安装命令
npx skills add https://github.com/hatayama/uloopmcp --skill uloop-get-menu-items
Agent 安装分布
amp
17
gemini-cli
17
github-copilot
17
codex
17
kimi-cli
17
opencode
17
Skill 文档
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.