setup_unity_bridge
Installs or updates Unity MCP bridge scripts in a Unity project, enabling direct interaction with Unity assets and scripts, even without an active Unity server.
Instructions
Install/update Unity MCP bridge scripts to a Unity project (works even if Unity server is not running)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
forceUpdate | No | Force update even if scripts are up to date | |
projectPath | Yes | Path to the Unity project |
Input Schema (JSON Schema)
{
"properties": {
"forceUpdate": {
"default": false,
"description": "Force update even if scripts are up to date",
"type": "boolean"
},
"projectPath": {
"description": "Path to the Unity project",
"type": "string"
}
},
"required": [
"projectPath"
],
"type": "object"
}