一键导入
uloop-hello-world
Sample hello world tool via uloop CLI. Use when you need to test the MCP tool system or see an example of custom tool implementation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Sample hello world tool via uloop CLI. Use when you need to test the MCP tool system or see an example of custom tool implementation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Clear Unity Console entries. Use before compile, tests, or debugging when stale logs would hide the current result.
Compile the Unity project and report errors/warnings. Use after C# edits or when a full Domain Reload compile is needed.
Control Unity Editor Play Mode. Use to start, stop, or pause Play Mode for runtime behavior checks and frame inspection.
Execute C# with Unity APIs when existing uloop tools cannot inspect or edit enough. Use for scene, prefab, SerializedObject, AssetDatabase refresh/.meta generation, menu, or PlayMode automation.
Find or inspect Unity GameObjects, especially objects the user currently selected in the Hierarchy. Use for details, components, tags, layers, or name/path searches.
Bring the Unity Editor window to front. Use when Unity must be visible for visual checks or user-facing interaction.
| name | uloop-hello-world |
| description | Sample hello world tool via uloop CLI. Use when you need to test the MCP tool system or see an example of custom tool implementation. |
Personalized hello world tool with multi-language support.
uloop hello-world [options]
| Parameter | Type | Default | Description |
|---|---|---|---|
--name | string | World | Name to greet |
--language | string | english | Language for greeting: english, japanese, spanish, french |
--include-timestamp | boolean | true | Whether to include timestamp in response |
# Default greeting
uloop hello-world
# Greet with custom name
uloop hello-world --name "Alice"
# Japanese greeting
uloop hello-world --name "太郎" --language japanese
# Spanish greeting without timestamp
uloop hello-world --name "Carlos" --language spanish --include-timestamp false
Returns JSON with:
Message: The greeting messageLanguage: Language used for greetingTimestamp: Current timestamp (if enabled)This is a sample custom tool demonstrating: