RenderBuddy
Provides tools for interacting with Blender's rendering capabilities, allowing users to check render status, preview frames, cancel renders, and manage render settings through an MCP interface.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@RenderBuddyHow's my render going?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
RenderBuddy MCP v2.0
"Your render, one message away."
RenderBuddy MCP is a Blender-native Model Context Protocol (MCP) tool. Artists install the RenderBuddy Blender Add-on, enable it in Blender, and can immediately talk to their active renders in natural language using any MCP client (Claude Desktop, Cursor, Antigravity, VS Code) without manual path configuration.
What's New in v2.0 (Blender Add-on Architecture)
Zero-Setup Workflow: No need to configure
.blendfile paths or Blender executable paths in TOML! Blender (via the add-on) is the live source of truth.Blender N-Panel & Properties UI: View connection status, port settings, and generate security PIN hashes directly inside Blender's interface.
Local HTTP REST API (Port 7342): Pure Python
http.serverrunning on a background daemon thread inside Blender exposes live render state instantly over loopback.Safe Main-Thread Execution: Render cancellations are queued and safely executed on Blender's main thread via
bpy.app.timers.Cross-Platform: Full support for Windows, macOS, and Linux out of the box.
Related MCP server: Blender MCP Link
How It Works
┌───────────────────────────┐ ┌───────────────────────────┐
│ Blender 3.6+ │ │ MCP Server Proxy │
│ ┌─────────────────────┐ │ GET /status │ ┌─────────────────────┐ │
│ │ RenderBuddy Add-on │◄─┼────────────────┼──│ AddonClient │ │
│ │ (bpy.app.handlers) │ │ POST /cancel │ │ (services/addon) │ │
│ └──────────┬──────────┘ │ │ └──────────┬──────────┘ │
│ │ │ │ │ │
│ ▼ │ │ ▼ │
│ [HTTP Server:7342] │ │ [MCP Tool Handlers] │
└─────────────┬─────────────┘ └─────────────┬─────────────┘
│ │
└─────────────────── Loopback ───────────────┘
(127.0.0.1)Quick Start Guide
1. Install & Enable the Blender Add-on
Run the build script to generate
dist/renderbuddy_addon.zip:python build_addon.pyIn Blender: Edit → Preferences → Add-ons → Install...
Select
dist/renderbuddy_addon.zipand check the box to Enable RenderBuddy.
2. Install the MCP Server
pip install -e .[dev]3. Add to your MCP Client Configuration
In your client configuration file (mcp_config.json or claude_desktop_config.json):
{
"mcpServers": {
"renderbuddy": {
"command": "python",
"args": [
"C:/path/to/RenderBuddy/main.py"
]
}
}
}4. Start Rendering & Ask Anything!
Open any project in Blender, press Render, and ask your AI assistant:
"How is my render going?"
"Show me the latest rendered frame."
"How much time is left?"
"What resolution am I rendering?"
"Cancel the render (PIN: 1234)"
MCP Tools Reference
SAFE Tools (No Authentication Required)
Tool | Description | Example Query |
| Health check verifying MCP server and Blender add-on connection | "Ping RenderBuddy" |
| Returns server version and architecture details | "What version is running?" |
| Returns progress %, frame counts, state, engine, and ETA | "How's the render going?" |
| Returns resolution, frame range, camera name, and format | "What resolution am I rendering?" |
| Returns path and details of the latest rendered frame image | "Show me the latest frame" |
| Exports latest frame or | "Upload the finished render" |
| Dispatches email with attached render output | "Email me the render" |
PROTECTED Tools (PIN Authentication Required)
Tool | Requirements | Example Query |
| Valid PIN | "Cancel the render, PIN 1234" |
| Valid PIN + | "Shut down my PC after rendering" |
Running Automated Tests
Run the full 107+ unit test suite (runs standalone without requiring Blender):
python -m pytest -vLicense
MIT License. Designed for 3D Artists, Studios, and Pipeline TD Automation.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/harshh0p/RenderBuddy'
If you have feedback or need assistance with the MCP directory API, please join our Discord server