A Unity MCP server that allows MCP clients like Claude Desktop or Cursor to perform Unity Editor actions.
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",
"wondeks/unity-mcp"
]
}
}
}
Run in terminal:
claude mcp add unity-mcp npx -y wondeks/unity-mcp
Add to .cursor/mcp.json:
{
"mcpServers": {
"unity-mcp": {
"command": "npx",
"args": [
"-y",
"wondeks/unity-mcp"
]
}
}
}