unity-tool-list

Lists Unity-MCP tools registered in the connected Unity Editor with optional regex filtering.

Updated May 27, 2026
One-click install
npx skills add https://github.com/AdielMag/ClashUp --skill unity-tool-list-adielmag
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: unity-tool-list
Source: https://github.com/AdielMag/ClashUp/tree/main/client/ClashUp.Unity/.claude/skills/unity-tool-list
Command: npx skills add https://github.com/AdielMag/ClashUp --skill unity-tool-list-adielmag

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires unity-mcp-cli.

What problem does it solve? When working with the Unity MCP plugin, it is hard to know which tools are currently registered in the connected Unity Editor instance. This Skill enumerates every available Unity-MCP tool so you can discover capabilities before invoking them. ## Core Features & Use Cases - Tool Discovery: Iterates all tools registered in the connected Unity Editor via the Unity MCP plugin and returns their names. - Regex Filtering: Optionally filters tools with a case-insensitive regex matched against tool names, descriptions, and argument names/descriptions, with a 200ms execution-timeout guard. - Verbosity Control: Toggles let you include tool descriptions and input argument details (names only, or names plus descriptions) to control response size. - Use Case: Before automating an editor task, run the tool with a regex like "scene" to find every scene-related MCP tool and inspect its expected inputs. ## Quick Start Ask the AI to list all Unity-MCP tools registered in the connected Unity Editor, optionally filtering by a keyword such as "scene".

Frequently Asked Questions about unity-tool-list

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I list all Unity MCP tools available in the Unity Editor?▼

Run the unity-tool-list tool through unity-mcp-cli with no arguments to enumerate every tool registered in the connected Unity Editor instance. It returns each tool's name, and optionally descriptions and input arguments.

How to filter Unity MCP tools by keyword or regex?▼

Pass the regexSearch parameter with a case-insensitive regex pattern. It matches against tool names, descriptions, and argument names and descriptions, with a 200ms execution-timeout guard against expensive patterns.

What should I do if unity-mcp-cli is not found?▼

Install it globally with npm install -g unity-mcp-cli, or invoke it via npx unity-mcp-cli. The unity-initial-setup skill contains detailed installation instructions.

How do I control the size of the Unity tool list response?▼

Use the includeDescription toggle to add tool descriptions and the includeInputs option to add argument names or names plus descriptions. Leaving both off returns only tool names for a compact result.

Why does my regex filter throw an error when listing Unity tools?▼

An invalid regular expression passed to regexSearch throws an ArgumentException. Verify the pattern syntax is valid .NET regex before submitting, and keep patterns simple to stay within the 200ms timeout guard.