A Unity package that enables seamless communication between Unity and Large Language Models (LLMs) like Claude Desktop via the Model Context Protocol (MCP). This server acts as a bridge, allowing Unity to send commands to and receive responses from MCP-compliant tools, empowering developers to automate workflows, manipulate assets, and control the Unity Editor programmatically.
The Unity MCP Server provides a bidirectional communication channel between Unity (via C#) and a Python server, enabling:
This project is perfect for developers who want to leverage LLMs to enhance their Unity projects or automate repetitive tasks.
To use the Unity MCP Package, ensure you have the following installed:
Download and install Python 3.12 or newer from python.org. Make sure to add Python to your system’s PATH during installation.
uv is a Python package manager that simplifies dependency management. Install it using the command below based on your operating system:
shell
brew install uv
shell
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
shell
set Path=%USERPROFILE%\.local\bin;%Path%
shell
curl -LsSf https://astral.sh/uv/install.sh | sh
For alternative installation methods, see the uv installation guide.
Important: Do not proceed without installing uv.
Window > Package Manager
.+
button and select Add package from git URL
.https://github.com/justinpbarnett/unity-mcp.git
Once installed, the Unity MCP Package will be available in your Unity project. The server will start automatically when used with an MCP client like Claude Desktop or Cursor.
I’d love your help to make the Unity MCP Server even better! Here’s how to contribute:
shell
git checkout -b feature/your-feature-name
shell
git checkout -b bugfix/your-bugfix-name
shell
git commit -m "Add feature: your feature description"
git push origin feature/your-feature-name
master
branch with a description of your changes.This project is licensed under the MIT License. Feel free to use, modify, and distribute it as you see fit. See the full license here.
Encountering issues? Try these fixes:
For more help, visit the issue tracker or file a new issue.
Have questions or want to chat about the project? Reach out!
A huge thanks to everyone who’s supported this project’s initial release. Special shoutout to Unity Technologies for their excellent Editor API.
Happy coding, and enjoy integrating LLMs with Unity!