Your Unity editor, now taking orders from LLMs
An open-source bridge that lets Claude, GPT, and local models actually manipulate your Unity scenes, scripts, and assets through the Model Context Protocol.

What it does
MCP for Unity is a C# package that exposes the Unity Editor to AI assistants via the Model Context Protocol. Instead of just generating code for you to paste, the LLM can directly create objects, modify scenes, edit scripts, run tests, and manage assets inside your running editor. It supports Claude, Codex, VS Code extensions, and local LLMs through a common interface.
The interesting bit
The project treats the Unity Editor itself as a tool-callable environment rather than a passive code generator. The “create red, blue, and yellow cubes” example in the README sounds trivial, but it demonstrates something most AI coding tools can’t do: direct manipulation of a live 3D authoring environment without human copy-paste in between.
Key highlights
- Works with multiple AI clients (Claude, Codex, VS Code, local LLMs) through a single protocol
- Supports multi-instance routing for teams running several Unity editors simultaneously
- Includes tool grouping for specialized domains: VFX, animation, UI, testing
- Roslyn-based script validation before the LLM’s code hits your project
- Remote server hosting with authentication for shared or cloud setups
- MIT licensed; actively maintained by Aura with a published academic citation
Caveats
- Requires Python 3.10+ alongside the Unity package, so it’s not a pure C# solution
- The README is light on concrete limitations or failure modes; robustness claims are untested in the source material
- Sponsored by Aura, which also sells a premium “Aura for Unity” product; the free tool may serve partly as a funnel
Verdict
Worth a look if you’re already using LLMs for game dev and tired of the copy-paste loop, or if you want reproducible AI-driven scene setup for testing. Skip it if you need deep runtime (player build) integration — this is strictly editor automation.
Frequently asked
- What is CoplayDev/unity-mcp?
- An open-source bridge that lets Claude, GPT, and local models actually manipulate your Unity scenes, scripts, and assets through the Model Context Protocol.
- Is unity-mcp open source?
- Yes — CoplayDev/unity-mcp is open source, released under the MIT license.
- What language is unity-mcp written in?
- CoplayDev/unity-mcp is primarily written in C#.
- How popular is unity-mcp?
- CoplayDev/unity-mcp has 12.8k stars on GitHub and is currently cooling off.
- Where can I find unity-mcp?
- CoplayDev/unity-mcp is on GitHub at https://github.com/CoplayDev/unity-mcp.