Unity MCP server, providing a bridge between the Unity Editor and external Large Language Models (LLMs) or cloud-based AI agents.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"unity-mcp": {
"command": "npx",
"args": [
"-y",
"NoSpoonLab/unity-mcp"
]
}
}
}
Run in terminal:
claude mcp add unity-mcp npx -y NoSpoonLab/unity-mcp
Add to .cursor/mcp.json:
{
"mcpServers": {
"unity-mcp": {
"command": "npx",
"args": [
"-y",
"NoSpoonLab/unity-mcp"
]
}
}
}