execute-python
Run Python code remotely in Unreal Engine environments using the MCP Unreal Server, enabling automated node discovery and management for efficient scripting and task execution.
Instructions
在Unreal中执行Python代码
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | ||
| unattended | No |
Input Schema (JSON Schema)
{
"properties": {
"code": {
"type": "string"
},
"unattended": {
"default": true,
"type": "boolean"
}
},
"required": [
"code"
],
"type": "object"
}