← All creators

IvanMurzak

User

AI Skills, MCP Tools, and CLI for Unity Engine. Full AI develop and test loop. Use cli for quick setup. Efficient token usage, advanced tools. Any C# method may be turned into a tool by a single line. Works with Claude Code, Gemini, Copilot, Cursor and any other absolutely for free.

50 indexed · 50 Featured · 3,680 stars · avg score 93
Prolific Quality

Categories

Indexed Skills (50)

AI & Automation Featured

github-pr-review-fix

Review and resolve PR comments from GitHub. Validates each comment, fixes legitimate issues.

3,680 Updated today
IvanMurzak
AI & Automation Featured

build-cli

Build the unity-mcp-cli TypeScript CLI tool and link it globally for terminal use.

3,680 Updated today
IvanMurzak
AI & Automation Featured

assets-copy

Copy assets at given paths and store them at new paths. Refreshes the AssetDatabase at the end. Use 'assets-find' to locate the source assets first.

3,680 Updated today
IvanMurzak
AI & Automation Featured

assets-create-folder

Create a new folder under a parent folder inside 'Assets/'. The parent path must start with 'Assets/' and every intermediate folder in it must already exist. Refreshes the AssetDatabase at the end and returns the GUID(s) of the created folder(s).

3,680 Updated today
IvanMurzak
AI & Automation Featured

assets-delete

Delete the assets at the given project paths. Refreshes the AssetDatabase at the end. Use 'assets-find' to locate the assets first.

3,680 Updated today
IvanMurzak
AI & Automation Featured

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.

3,680 Updated today
IvanMurzak
AI & Automation Featured

assets-find

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.

3,680 Updated today
IvanMurzak
AI & Automation Featured

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.

3,680 Updated today
IvanMurzak
AI & Automation Featured

assets-material-create

Create a new Material asset with default parameters at a given 'Assets/'-rooted path ending in '.mat'. Creates intermediate folders if missing. Use 'assets-shader-list-all' to find a valid `shaderName`.

3,680 Updated today
IvanMurzak
AI & Automation Featured

assets-modify

Modify an asset file in the project. Use 'assets-get-data' first to inspect the asset structure before modifying. Not allowed to modify asset files in the 'Packages/' folder — modify them in 'Assets/'. Three modification surfaces are available (content, pathPatches, jsonPatch) — see the skill body for details.

3,680 Updated today
IvanMurzak
AI & Automation Featured

assets-move

Move or rename assets at the given project paths. Refreshes the AssetDatabase at the end. Use 'assets-find' to locate the assets first.

3,680 Updated today
IvanMurzak
AI & Automation Featured

assets-prefab-close

Close the currently opened prefab edit stage. Optionally saves changes back to the prefab asset before closing. Pair with 'assets-prefab-open' to enter the edit mode first.

3,680 Updated today
IvanMurzak
AI & Automation Featured

assets-prefab-create

Create a Prefab (or Prefab Variant) at a project asset path. Source can be a scene GameObject (`gameObjectRef`) or an existing prefab asset (`sourcePrefabAssetPath`). Creates intermediate folders if missing. Use 'gameobject-find' to locate the source GameObject first.

3,680 Updated today
IvanMurzak
AI & Automation Featured

assets-prefab-instantiate

Instantiate a prefab into the currently active scene at an optional position/rotation/scale, parented under an optional scene GameObject path. Use 'assets-find' to locate the prefab asset first.

3,680 Updated today
IvanMurzak
AI & Automation Featured

assets-prefab-open

Open the prefab edit stage for a prefab instance or prefab asset GameObject. Modifications inside the edit stage propagate to all instances. Pair with 'assets-prefab-close' to exit the stage when done.

3,680 Updated today
IvanMurzak
AI & Automation Featured

assets-prefab-save

Save the currently opened prefab edit stage back to its prefab asset without exiting the stage. Pair with 'assets-prefab-open' to enter the edit mode first.

3,680 Updated today
IvanMurzak
AI & Automation Featured

assets-refresh

Refresh the Unity AssetDatabase. Use after files were added or updated outside of the Unity API, or to force script recompilation when a '.cs' file changed. Returns a processing/success response and waits for compilation when triggered.

3,680 Updated today
IvanMurzak
AI & Automation Featured

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.

3,680 Updated today
IvanMurzak
AI & Automation Featured

console-get-logs

Retrieve Unity Editor logs from the MCP plugin's `LogCollector`, optionally filtered by log type or time window. Useful for debugging and monitoring Editor activity.

3,680 Updated today
IvanMurzak
AI & Automation Featured

editor-application-get-state

Return the current state of `UnityEditor.EditorApplication` — playmode, paused state, compilation state, and related flags.

3,680 Updated today
IvanMurzak
AI & Automation Featured

editor-application-set-state

Start / stop / pause the Unity Editor 'playmode'. Use 'editor-application-get-state' to inspect the current state first. Throws if the project currently has compilation errors.

3,680 Updated today
IvanMurzak
AI & Automation Featured

editor-selection-get

Get information about the current Selection in the Unity Editor — active object, active transform, selected GameObjects, transforms, instance IDs, and asset GUIDs (each enrichment is opt-in). Pair with 'editor-selection-set' to change the selection.

3,680 Updated today
IvanMurzak
AI & Automation Featured

editor-selection-set

Set the current Selection in the Unity Editor to the provided objects. All `ObjectRef`s must resolve to existing Unity objects; otherwise the call throws. Use 'editor-selection-get' to inspect the current selection first.

3,680 Updated today
IvanMurzak
AI & Automation Featured

gameobject-component-add

Add one or more Components to a GameObject in the opened Prefab or active Scene. Component types are looked up by full name (with namespace) or by class-name fallback. Use 'gameobject-find' to locate the host GameObject and 'gameobject-component-list-all' to discover valid component type names.

3,680 Updated today
IvanMurzak
AI & Automation Featured

gameobject-component-destroy

Destroy one or more Components from a target GameObject. Missing (null) components are skipped — they cannot be destroyed. Use 'gameobject-find' and 'gameobject-component-get' to identify the components first.

3,680 Updated today
IvanMurzak
AI & Automation Featured

gameobject-component-get

Get detailed information about a specific Component on a GameObject — type, enabled state, and (optionally) serialized fields and properties. Supports token-saving path-scoped reads via `paths` or `viewQuery`. Use 'gameobject-find' to list components first.

3,680 Updated today
IvanMurzak
AI & Automation Featured

gameobject-component-list-all

List the fully-qualified C# type names of every concrete `UnityEngine.Component` subclass available in the project. Paginated (default 5/page, max 500). Use this to find a valid `componentName` for 'gameobject-component-add'.

3,680 Updated today
IvanMurzak
AI & Automation Featured

gameobject-component-modify

Modify a specific Component on a GameObject in opened Prefab or in a Scene. Allows direct modification of component fields and properties without wrapping in GameObject structure. Use 'gameobject-component-get' first to inspect the component structure before modifying. Three modification surfaces are available (componentDiff, pathPatches, jsonPatch) — see the skill body for details.

3,680 Updated today
IvanMurzak
AI & Automation Featured

gameobject-create

Create a new GameObject in the currently opened Prefab or active Scene, optionally parented under another GameObject and pre-positioned. Pass `primitiveType` to spawn a Unity primitive (Cube, Sphere, etc.) instead of an empty GameObject.

3,680 Updated today
IvanMurzak
AI & Automation Featured

gameobject-destroy

Destroy a GameObject (and all nested children) in the currently opened Prefab or active Scene. Returns the destroyed GameObject's name, path, and instance ID for confirmation. Use 'gameobject-find' to locate the target first.

3,680 Updated today
IvanMurzak
AI & Automation Featured

gameobject-duplicate

Duplicate a batch of GameObjects in the currently opened Prefab or active Scene. Marks each affected scene as dirty after duplication. Use 'gameobject-find' to locate the source GameObjects first.

3,680 Updated today
IvanMurzak
AI & Automation Featured

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`.

3,680 Updated today
IvanMurzak
AI & Automation Featured

gameobject-modify

Modify GameObject fields and properties in opened Prefab or in a Scene. You can modify multiple GameObjects at once. Just provide the same number of GameObject references and SerializedMember objects. Three modification surfaces are available per GameObject (gameObjectDiffs, pathPatchesPerGameObject, jsonPatchesPerGameObject) — see the skill body for details.

3,680 Updated today
IvanMurzak
AI & Automation Featured

gameobject-set-parent

Reparent a batch of GameObjects under a new parent in the currently opened Prefab or active Scene. Per-item failures are reported in the returned status string instead of aborting the batch. Use 'gameobject-find' to locate the GameObjects first.

3,680 Updated today
IvanMurzak
AI & Automation Featured

object-get-data

Get serialized data for a Unity `UnityEngine.Object` — all serializable fields and properties. Supports token-saving path-scoped reads via `paths` or `viewQuery`. Pair with 'object-modify' when you need to write back.

3,680 Updated today
IvanMurzak
AI & Automation Featured

object-modify

Modify a Unity `UnityEngine.Object`'s serializable fields/properties. Three modification surfaces are available (`objectDiff`, `pathPatches`, `jsonPatch`) — see the skill body. Use 'object-get-data' first to inspect the object structure.

3,680 Updated today
IvanMurzak
AI & Automation Featured

package-add

Install a Unity package from the registry, a Git URL, or a local path. Modifies `manifest.json` and triggers package resolution; may also trigger a domain reload — the final result is delivered after the reload via the request's `requestId`. Use 'package-search' / 'package-list' for discovery first.

3,680 Updated today
IvanMurzak
AI & Automation Featured

package-list

List all UPM packages installed in the Unity project — name, version, source, description. Optionally filter by source (registry, embedded, local, git, built-in, local tarball), by name/display/description substring, and by direct-dependency-only.

3,680 Updated today
IvanMurzak
AI & Automation Featured

package-remove

Uninstall a UPM package from the Unity project. Modifies `manifest.json` and may trigger a domain reload — the final result is delivered after the reload via the request's `requestId`. Built-in packages and packages that are dependencies of others cannot be removed. Use 'package-list' to list installed packages first.

3,680 Updated today
IvanMurzak
AI & Automation Featured

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.

3,680 Updated today
IvanMurzak
AI & Automation Featured

profiler-capture-frame

Capture the current frame's timing info (delta time, FPS, frame counts, runtime). Snapshot only — historical frames live in Unity's Profiler window.

3,680 Updated today
IvanMurzak
AI & Automation Featured

profiler-get-memory-stats

Return memory statistics snapshot from UnityEngine.Profiling.Profiler — reserved, allocated, mono heap, graphics, etc. (in MB).

3,680 Updated today
IvanMurzak
AI & Automation Featured

profiler-get-rendering-stats

Return current frame timing, FPS, vsync, target frame rate, threading mode, and graphics device type from Unity Time / QualitySettings / SystemInfo.

3,680 Updated today
IvanMurzak
AI & Automation Featured

profiler-get-script-stats

Return script execution timing (frame time, fixed dt, time scale, frame count, runtime) plus Mono / GC memory usage in MB.

3,680 Updated today
IvanMurzak
AI & Automation Featured

profiler-get-status

Return the Unity profiler's current enabled state, active modules, max-used memory, and platform support flag. Read-only.

3,680 Updated today
IvanMurzak
AI & Automation Featured

assets-shader-list-all

List all shaders available in the project assets and packages, sorted by name. Use this to discover a valid `shaderName` for 'assets-material-create'.

3,680 Updated today
IvanMurzak
AI & Automation Featured

console-clear-logs

Clear the MCP log cache (used by 'console-get-logs') and the Unity Editor Console window. Useful for isolating logs to a specific action by clearing the slate first.

3,680 Updated today
IvanMurzak
AI & Automation Featured

ping

Lightweight readiness probe. Returns the input `message` echoed back, or `'pong'` when omitted. Useful for CLI health checks and SignalR connectivity smoke tests.

3,680 Updated today
IvanMurzak
AI & Automation Featured

profiler-clear-data

Discard all frames currently held by the Editor Profiler (UnityEditorInternal.ProfilerDriver.ClearAllFrames). Cannot be undone.

3,680 Updated today
IvanMurzak
AI & Automation Featured

profiler-enable-module

Toggle the wrapper's local 'enabled' flag for a named profiler module. Bookkeeping only — Unity's runtime API does not expose direct module control; for real module visibility use the Profiler window.

3,680 Updated today
IvanMurzak

Bio shown is the top-scored skill's repo description as a fallback — real GitHub bios land in a future update.