unity-mcp-workflows — for Claude Code unity-mcp-workflows, r8eo-x-unity, community, for Claude Code, ide skills, mcp.json, run_tests, validate_script, batch_execute, manage_probuilder

v1.0.0

Об этом навыке

Подходящий сценарий: Ideal for AI agents that need unity mcp workflows. Локализованное описание: Use batch execute when you need to create multiple GameObjects or modify multiple components in sequence -- it reduces round-trips. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Возможности

Unity MCP Workflows
UnityMCP is configured in .mcp.json at the project root:
"args": ["-y", "@anthropic/unity-mcp@latest"]
Unity Editor must be open with the project loaded
The corresponding Unity package/addon must be installed in the project

# Core Topics

Totes-MickGOATs Totes-MickGOATs
[0]
[0]
Updated: 3/21/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 8/11

This page remains useful for teams, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution
Review Score
8/11
Quality Score
49
Canonical Locale
en
Detected Body Locale
en

Подходящий сценарий: Ideal for AI agents that need unity mcp workflows. Локализованное описание: Use batch execute when you need to create multiple GameObjects or modify multiple components in sequence -- it reduces round-trips. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Зачем использовать этот навык

Рекомендация: unity-mcp-workflows helps agents unity mcp workflows. Use batch execute when you need to create multiple GameObjects or modify multiple components in sequence -- it reduces round-trips. This AI agent

Подходит лучше всего

Подходящий сценарий: Ideal for AI agents that need unity mcp workflows.

Реализуемые кейсы использования for unity-mcp-workflows

Сценарий использования: Applying Unity MCP Workflows
Сценарий использования: Applying UnityMCP is configured in .mcp.json at the project root:
Сценарий использования: Applying "args": ["-y", "@anthropic/unity-mcp@latest"]

! Безопасность и ограничения

  • Ограничение: Unity Editor must be open with the project loaded
  • Ограничение: The corresponding Unity package/addon must be installed in the project
  • Ограничение: Step 3: Continue paging until all objects are retrieved (or you found what you need)

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is unity-mcp-workflows?

Подходящий сценарий: Ideal for AI agents that need unity mcp workflows. Локализованное описание: Use batch execute when you need to create multiple GameObjects or modify multiple components in sequence -- it reduces round-trips. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

How do I install unity-mcp-workflows?

Run the command: npx killer-skills add Totes-MickGOATs/r8eo-x-unity. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for unity-mcp-workflows?

Key use cases include: Сценарий использования: Applying Unity MCP Workflows, Сценарий использования: Applying UnityMCP is configured in .mcp.json at the project root:, Сценарий использования: Applying "args": ["-y", "@anthropic/unity-mcp@latest"].

Which IDEs are compatible with unity-mcp-workflows?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for unity-mcp-workflows?

Ограничение: Unity Editor must be open with the project loaded. Ограничение: The corresponding Unity package/addon must be installed in the project. Ограничение: Step 3: Continue paging until all objects are retrieved (or you found what you need).

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add Totes-MickGOATs/r8eo-x-unity. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use unity-mcp-workflows immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

unity-mcp-workflows

Use batch execute when you need to create multiple GameObjects or modify multiple components in sequence -- it reduces round-trips. This AI agent skill

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Unity MCP Workflows

Use this skill when interacting with the Unity Editor from Claude Code via MCP tools, including scene manipulation, script management, test execution, and asset operations.

Setup

UnityMCP is configured in .mcp.json at the project root:

json
1{ 2 "mcpServers": { 3 "UnityMCP": { 4 "command": "npx", 5 "args": ["-y", "@anthropic/unity-mcp@latest"] 6 } 7 } 8}

Prerequisites:

  • Unity Editor must be open with the project loaded
  • The corresponding Unity package/addon must be installed in the project
  • Node.js/npx available on PATH

Additional UnityMCP Tools

The following UnityMCP tools are available but not covered in detail above:

ToolPurpose
run_testsRun Unity Test Runner tests (EditMode/PlayMode) and retrieve results
validate_scriptCheck a C# script for compilation errors without modifying it
batch_executeExecute multiple MCP tool calls in a single request for efficiency
manage_probuilderCreate and modify ProBuilder meshes (track elements, ramps, barriers)

Use run_tests after script changes to verify nothing broke. Use batch_execute when you need to create multiple GameObjects or modify multiple components in sequence -- it reduces round-trips.

Workflow Best Practices

1. Always Check Compilation After Script Changes

Step 1: manage_script action:"modify" (or create)
Step 2: read_console log_type:"error"
Step 3: If errors → fix and repeat
Step 4: If clean → proceed

2. Use Paging for Large Scenes

Step 1: manage_scene action:"get_hierarchy" page_size:50
Step 2: Check if there's a cursor for next page
Step 3: Continue paging until all objects are retrieved (or you found what you need)

3. Properties Query Strategy

Step 1: manage_gameobject action:"get_components" include_properties:false
        → See which components exist (lightweight response)
Step 2: manage_gameobject action:"get_components" include_properties:true
        → Only when you need actual property values

4. Check Editor State Before Proceeding

Before performing operations that depend on compilation:

Step 1: Check editor_state.isCompiling in responses
Step 2: If compiling, wait and re-check
Step 3: Only proceed when compilation is complete

5. Use Resources for Reads, Tools for Mutations

  • Reading scene hierarchy, component data, file contents → use resource endpoints when available (faster, cached)
  • Modifying objects, creating assets, changing properties → use tool endpoints (these modify state)

6. Use batch_execute for Multiple Operations

When you need to create multiple GameObjects or modify multiple components in sequence, use batch_execute to reduce round-trips:

batch_execute:
  calls:
    - tool: manage_gameobject
      params: { action: "set_component_property", ... }
    - tool: manage_gameobject
      params: { action: "set_component_property", ... }

UnityMCP Tool Selection Guide

TaskTool
Scene hierarchy queriesmanage_scene with paging
Component property readsmanage_gameobject with include_properties
Script creation/modificationmanage_script
Running testsrun_tests
Validating C# without savingvalidate_script
Multiple sequential operationsbatch_execute
ProBuilder mesh workmanage_probuilder
Material/shader workmanage_material

Troubleshooting

IssueSolution
MCP server not connectingEnsure Unity Editor is open and the MCP addon/package is installed and enabled
Tools return errorsCheck read_console for Unity errors. Editor may need a script recompile.
Slow hierarchy queriesUse page_size parameter, start with 50. Don't query include_properties: true unnecessarily.
Script changes not taking effectCheck editor_state.isCompiling. Wait for compilation to complete.
execute_script errorsEnsure the C# code is valid. Check for missing using statements. Results appear in read_console.
Objects not found by nameNames are case-sensitive. Use find_gameobjects to search. Hierarchy paths use / separators.

Topic Pages

Связанные навыки

Looking for an alternative to unity-mcp-workflows or another community skill for your workflow? Explore these related open-source skills.

Показать все

openclaw-release-maintainer

Logo of openclaw
openclaw

Локализованное описание: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

widget-generator

Logo of f
f

Локализованное описание: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat . It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code, Cursor

flags

Logo of vercel
vercel

Локализованное описание: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
Браузер

pr-review

Logo of pytorch
pytorch

Локализованное описание: Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review . It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
Разработчик