When working in 3D with Blender, there inevitably comes a moment when you think, “Can’t this be done automatically?” This is especially true when repeating the same action dozens of times or having to write complex scripts manually. Now, with AI assistant Claude directly integrated with Blender, that concern is becoming a reality. This article explains why Anthropic decided to sponsor the Blender Foundation and walks you through, step by step, how to actually connect Claude to Blender and use it.
The Background of Anthropic and Blender Foundation Sponsorship
Anthropic is the company that created the AI assistant Claude. In April 2026, the company announced its participation as an official Corporate Patron of Blender, an open-source 3D software. This is not merely a cooperation declaration—it involves substantial financial support, with annual contributions of $240,000 (approximately 330 million won) to the Blender development fund. This amount is equivalent to the annual salary of four Blender full-time developers.
Large companies like Netflix Animation Studios, Wacom, Bolt Graphics, Google, and Meta are already participating in the same Corporate Patron tier. Anthropic’s joining this tier means more than simple publicity—it represents serious investment in the Blender ecosystem. Sponsors also gain access to a channel for discussing annual development plans with the Blender Foundation.
Anthropic’s funds will be focused on Blender’s core development, particularly on maintaining and improving the Python API. The Python API is an interface that allows you to control Blender’s internals through code. In simple terms, it’s the key to manipulating Blender through programming, and when connected with AI, you can automate 3D tasks with a single natural language command. Rather than creating its own closed-source 3D tool, Anthropic chose an already-established open-source ecosystem used by millions. This is an important signal showing that AI companies are shifting their strategy from model performance competition to ecosystem competition.
How to Connect Claude AI with Blender
The core technology connecting Claude and Blender is MCP (Model Context Protocol). MCP is a communication protocol that enables AI models to communicate in real-time with external software. In simple terms, it acts like a telephone line that allows Claude to “call” Blender. With this connection, Claude can recognize objects inside Blender, issue commands, and receive results.
Three components are needed for integration: uv, a Python package manager; MCP server configuration; and an add-on installed inside Blender. The minimum requirement is Blender 3.0 or later, though Blender 4.5 LTS is recommended for the most stable use. Following the steps below in order, even first-time users can complete the integration within 10-15 minutes.
- Install the uv package manager: On macOS, run brew install uv in the terminal. On Windows, run powershell -c “irm https://astral.sh/uv/install.ps1 | iex” in PowerShell, then add C:\Users\YourUsername\.local\bin to the Path environment variable.
- Download the Blender add-on: Go to the GitHub repository github.com/ahujasid/blender-mcp and download the addon.py file (or ZIP file; version 1.1.0 or later is recommended).
- Install the add-on in Blender: Open Blender and go to Edit → Preferences → Add-ons from the top menu. Click the Install… button in the upper right and select the addon.py file you just downloaded.
- Activate the add-on: Find the “Interface: Blender MCP” item in the Add-ons list and enable the checkbox. If you skip this step, Blender won’t receive MCP signals.
- Open Claude Desktop settings: Run the Claude Desktop app and click Settings (gear icon) → Developer tab → Edit Config. On macOS, the configuration file is in ~/Library/Application Support/Claude/, and on Windows, it’s in %APPDATA%\Claude\.
- Add JSON configuration:
For macOS: “mcpServers”: { “blender”: { “command”: “uvx”, “args”: [“blender-mcp”] } } For Windows: Change “command” to “cmd” and “args” to [“/c”, “uvx”, “blender-mcp”]. - Completely restart the Claude app: On macOS, press Command+Q; on Windows, right-click the system tray icon and select Quit. Simply closing the window won’t apply the settings.
- Confirm the connection: Press N in Blender’s 3D viewport to open the sidebar on the right. If you see the BlenderMCP tab, the connection was successful.
The Claude.ai web browser version does not support the Blender connector. You must install and use the Claude Desktop app, and you need either a Professional plan or Claude for Work product. Check your plan before installing the app.
Auto-generating Blender Scripts with Claude
Once integration is complete, you can directly instruct Claude to perform Blender tasks. One of the most powerful features is automatic Python script generation. Blender uses Python internally to control all operations. Even if you don’t know how to code, you can tell Claude what result you want, and Claude will write Python code to achieve it.
For example, if you input to Claude “Write a Blender script that creates a procedural low-poly tree,” it will create a script that automatically generates a low-poly style tree. This generated script can be executed with the command blender –background –python your_script.py from the terminal. The –background option runs Blender without displaying the GUI, useful for automating large-scale tasks.
The more specific your prompt, the more useful the script. If you specify parameters like step count and radius—for example, “Create a Blender Python script that generates a spiral staircase with customizable step count and radius”—you’ll get a flexible script where you can change only the numbers to get varied results.
In MCP-connected mode, even the copy-paste process is eliminated. Since Claude sends commands directly to Blender, you can watch the Blender screen change in real-time as you give instructions in the chat window.
Learning Claude Blender Usage Through Practical Examples
Now that integration is complete, let’s look at concrete examples of what tasks you can automate. Below are representative use cases that even beginners can try immediately.
- ▪ ①Scene Debugging: A scene is the entire workspace in Blender. When you ask Claude “Tell me the names and positions of all objects in the current scene,” it analyzes the entire scene and reports back.
- ▪ ②Batch Changes: When you need to change the material color of 100 objects at once, you can request “Apply a blue PBR material to all mesh objects in the scene.”
- ▪ ③Object Creation and Placement: Mathematical arrangement tasks like “Place 8 sphere objects evenly around a circle with a radius of 2m” are solved in natural language.
- ▪ ④Lighting Setup Analysis: Professional rendering settings like “Analyze the current scene’s lighting setup and optimize it for indoor product photography” are guided by Claude.
- ▪ ⑤Custom Tool Addition: It’s also possible to add new buttons or panels directly to the Blender interface using the Blender Python API. You can request that frequently-used functions be made into a single button.
The key to requesting Blender work from Claude is to be as specific as possible. Instead of “Make a tree,” specify “Create a 3m-tall, 5-branched, low-poly style tree at the origin (0,0,0).” Including numerical values and style specifications together will get you much closer to your desired result.
The Impact of Anthropic’s Sponsorship on Open Source
Anthropic’s sponsorship carries significance beyond simply providing funds. The fact that an AI company chose to invest in the open-source community rather than build its own closed ecosystem has implications for the entire industry. Because Blender follows the GNU GPL license, no sponsor can own the code or control development direction. Anthropic is no exception.
The Blender Foundation officially states that “corporate participation in the Development Fund does not mean the corporation’s mission, products, and strategies align with Blender.” The sponsorship funds are invested in core development for all Blender users, not for a specific company’s interests. This structure maintains open-source independence while securing financial sustainability.
It’s also notable that funds are concentrated on Python API improvements. The stronger the Python API becomes, the better not just Claude, but all AI tools and all developers can leverage Blender. This ultimately lowers the barrier to entry for 3D creation and creates an environment where more people can do professional 3D work without complex coding.
Anthropic’s strategy is also clear. Rather than leaving Claude as a general-purpose conversation tool, they’re deeply integrating it into actual professional creative workflows. The connection with Blender is the first major step, and more integrations with creative software are likely to follow.
Connect Claude and Blender Right Now
Add-on installation → JSON configuration addition → Check sidebar with N key in Blender. Just these three steps open a new world of automating 3D work with natural language. You don’t need coding experience. Claude is right there with you.
