execute_blender_code
Run Python code within Blender step-by-step to automate tasks, manipulate 3D models, or customize workflows through the BlenderMCP server.
Instructions
Execute arbitrary Python code in Blender. Make sure to do it step-by-step by breaking it into smaller chunks.
Parameters:
code: The Python code to execute
Input Schema
Name | Required | Description | Default |
---|---|---|---|
code | Yes |
Input Schema (JSON Schema)
{
"properties": {
"code": {
"title": "Code",
"type": "string"
}
},
"required": [
"code"
],
"title": "execute_blender_codeArguments",
"type": "object"
}