assets-find

Solid

Search the Unity asset database using a search filter string. The filter accepts names, labels (`l:`), types (`t:`), AssetBundles (`b:`), areas (`a:`), and globs (`glob:`). See the body for the full filter syntax.

AI & Automation 2,976 stars 277 forks Updated today Apache-2.0

Install

View on GitHub

Quality Score: 93/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Assets / Find Search the asset database using the search filter string. Allows you to search for Assets. The string argument can provide names, labels or types (classnames). ## Filter syntax - **Name** — filter assets by their filename (without extension). Words separated by whitespace are treated as separate name searches. - **Labels (`l:`)** — assets can have labels attached. Use `l:` before each label. - **Types (`t:`)** — find assets based on explicitly identified types. Available types include AnimationClip, AudioClip, AudioMixer, ComputeShader, Font, GUISkin, Material, Mesh, Model, PhysicMaterial, Prefab, Scene, Script, Shader, Sprite, Texture, VideoClip, VisualEffectAsset, VisualEffectSubgraph. - **AssetBundles (`b:`)** — find assets which are part of an Asset bundle. - **Area (`a:`)** — find assets in a specific area. Valid values: `all`, `assets`, `packages`. - **Globbing (`glob:`)** — use globbing to match specific rules. Searching is case-insensitive. Use `searchInFolders` to restrict the search scope. `maxResults` caps the returned list (default 10) — results beyond it are truncated. ## How to Call ```bash unity-mcp-cli run-tool assets-find --input '{ "filter": "string_value", "searchInFolders": "string_value", "maxResults": 0 }' ``` > For complex input (multi-line strings, code), save the JSON to a file and use: > ```bash > unity-mcp-cli run-tool assets-find --input-file args.json > ``` > > Or pipe via stdin (recommended): > ```bash > unity-mcp-cli...

Details

Author
IvanMurzak
Repository
IvanMurzak/Unity-MCP
Created
1 years ago
Last Updated
today
Language
C#
License
Apache-2.0

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

assets-find-built-in

Search the built-in assets of the Unity Editor (located at Resources/unity_builtin_extra). Filters by name and/or type; built-in assets have no GUID so GUID-based lookups are not supported.

2,976 Updated today
IvanMurzak
AI & Automation Solid

assets-get-data

Get asset data from the asset file in the Unity project — every serializable field and property. Supports token-saving path-scoped reads via `paths` or `viewQuery`. Use 'assets-find' to find the asset first.

2,976 Updated today
IvanMurzak
AI & Automation Solid

assets-shader-get-data

Get detailed data about a shader asset — properties, subshaders, passes, compilation messages, and supported status. Supports token-saving path-scoped reads via `paths` or `viewQuery`. Use 'assets-find' with `t:Shader` or 'assets-shader-list-all' to locate the shader first.

2,976 Updated today
IvanMurzak
AI & Automation Solid

gameobject-find

Find a specific GameObject in the opened Prefab (preferred when present) or the active Scene. Optionally include editable data, components preview, bounds, and limited hierarchy. Supports token-saving path-scoped reads via `paths` or `viewQuery`.

2,976 Updated today
IvanMurzak
AI & Automation Solid

package-search

Search Unity's package registry plus locally installed packages (Git, local, embedded sources) by query string. Returns available versions and installation status. Online mode fetches exact matches from the live registry then supplements with cached substring matches.

2,976 Updated today
IvanMurzak