Blender Agent Bridge v0.4.0 public beta is live #12
CallMeJones
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Blender Agent Bridge v0.4.0: Public Open-Source Beta
Today I’m opening Blender Agent Bridge to the public as an open-source beta.
Blender Agent Bridge connects Blender to external AI agents through the Model Context Protocol (MCP). It lets tools such as Codex, Claude Desktop, Claude Code, Cursor, and other MCP-capable clients inspect an open Blender scene, gather visual evidence, use structured editing tools, and help with longer animation and rendering workflows—while keeping Blender, and the artist, in control.
This beta is for Blender artists, technical artists, animators, developers, and curious builders who want to explore what agent-assisted 3D work can look like without placing a hidden chat system or a provider API key inside Blender.
Why I Built It
The project started while I was helping my girlfriend, who is an animator, through some very tight deadlines. We tried other AI tools, and some of them produced helpful videos or useful starting points. The problem came when she needed to make a small, precise change. A generated video could not give her the control she had inside Blender, and it did not come with the raw models, animation data, scene setup, or editable project files needed to continue the work properly.
That experience changed the question for me. Instead of asking, “Can AI generate something that looks finished?”, I started asking, “Can AI work inside an artist’s real production process while leaving the artist in control of every useful part?” Blender Agent Bridge grew from that question.
AI agents are becoming good at planning, using tools, and iterating on complex tasks. Blender, however, is not a text editor. A small instruction can affect hundreds of objects, frames, materials, files, or render settings. Useful AI integration therefore needs more than arbitrary Python execution: it needs scene awareness, visual feedback, clear boundaries, and a way to undo or reject changes.
Blender Agent Bridge separates those responsibilities:
The bridge is local-first: its Blender connection binds to localhost, and Blender Agent Bridge does not store model-provider credentials.
What Can It Do?
The current beta includes a canonical registry of 181 tool contracts covering scene inspection, editing, animation, rendering, project health, bounded project-directory files, and external asset workflows.
An agent can, among other things:
.blendfile health, autosave an already-saved project, and request user-confirmed paths for opening or creating project files; andOne of the test projects was an Egypt dogfight sequence. The agent inspected the scene, captured playblasts and renders, repaired visual problems, managed longer render jobs, and checked the output through the bridge.
Safety Is Part of the Workflow
I do not want “AI for Blender” to mean giving an agent silent, unrestricted control over a production file.
Blender Agent Bridge uses several layers of friction where they matter:
These controls reduce risk, but they do not turn generated Python into a security sandbox. During the beta, use copies or version control for important projects, enable script trust only for agents you trust, and keep backups of valuable
.blendfiles.Provider-Neutral and Client-Friendly
The project began under the name “Claude for Blender,” which is why some internal identifiers still use
claude_blenderfor compatibility. The public project is now Blender Agent Bridge because it is not tied to one model provider.It can work with Codex, Claude, Cursor, VS Code-based MCP hosts, ChatGPT-compatible MCP setups, Gemini CLI, OpenCode, Ollama-based hosts, and other clients that can run a local MCP server. Client-specific setup guides are included in the repository.
The extension includes a bundled MCP runtime for the simplest installation. Advanced users can instead run the exact matching
blender-bridgepackage from PyPI withuvx. Both modes expose the same contracts and perform the same compatibility check.Install the Public Beta
Blender Agent Bridge supports Blender 4.2 or newer and is continuously tested against Blender 4.2 LTS, 4.5 LTS, and 5.1.
The recommended installation path is Blender’s extension repository:
In Blender, open Edit → Preferences → Get Extensions.
Add this remote repository:
Sync the repository, search for Blender Agent Bridge, and install it.
Open the 3D View sidebar, select Agent Bridge, and press Start.
Press Copy MCP Config, paste the generated configuration into your AI client, and restart or refresh that client.
You can also download the packaged extension ZIP from the v0.4.0 GitHub Release. Do not use GitHub’s automatically generated “Source code” ZIP as the Blender extension.
Once connected, try:
Then select an object and try a reversible edit:
Why Call It a Beta?
The bridge already has substantial automated coverage, including tagged-release tests against multiple Blender versions, installed-extension checks, package tests, and public artifact verification. I am still calling it a beta because real artists will find workflows and failure modes that a test suite cannot.
During the beta, you should expect:
That is exactly why I am releasing it openly now: I want the next stage to be shaped by real scenes, real artists, and transparent technical feedback.
How to Help
The project is licensed under GPL-3.0-or-later, and contributions are welcome.
The most helpful beta feedback includes:
.blendfile that you have the right to share.Please use GitHub Discussions for ideas, questions, and examples; GitHub Issues for reproducible bugs; and GitHub Security Advisories for vulnerabilities that should not be disclosed publicly.
If the bridge helps you make something interesting, I would love to see it. The repository includes a community showcase and a submission path for work that demonstrates useful, reversible, or safety-aware agent workflows.
Try It, Test It, and Help Shape It
Blender Agent Bridge is an experiment in giving AI agents meaningful creative tools without removing the artist from the loop. The goal is not a one-click replacement for Blender knowledge. The goal is a capable collaborator that can inspect, act, show its work, and wait for a human decision when the stakes are higher.
If that direction sounds useful, install the beta, connect the MCP client you already use, and try it on a copy of a real project.
I’m looking forward to seeing where people take it—and to learning what needs to improve next.
All reactions