Grok builds fully rigged 3D spaceship in Blender from text input

1 hour ago 2



Tell an AI what you want, and it writes the Python code to build it inside Blender. That’s the pitch behind Grok’s latest party trick, and the results are genuinely impressive: a fully detailed, fully rigged 3D spaceship conjured from nothing but a text description. The model, Grok 4.5, produced the spacecraft as an 86,000-triangle mesh, complete with materials and rigging. How it actually works The process hinges on Blender’s Python API, known as bpy. Grok doesn’t manipulate Blender’s interface the way a human would, clicking through menus and dragging handles. Instead, it writes Python scripts that call Blender’s functions directly, generating geometry, assigning materials, and setting up rigs programmatically. The connective tissue making this possible is something called the Model Context Protocol, or MCP. Think of it as a lightweight server sitting between Grok and Blender, acting as a translator. The user types a prompt. Grok interprets the prompt and generates code. The MCP server pipes that code into a live Blender session and sends visual feedback back to the model. That feedback loop is the key detail. Grok doesn’t just fire off a script and hope for the best. It can look...

Read Entire Article