product-studio
Provides tools for interacting with a local Blender installation to create and edit product models, manage project revisions, render PNG previews from scene snapshots, and publish reusable model assets.
Click on "Deploy 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., "@product-studiocreate a project for a 100mm amber bottle, read the skill, and model it"
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.
Blender Product Studio Agent
A local, editable Blender product modeling and advertising photography workspace. The Blender tool layer is exposed through stdio MCP, so Claude Code, Codex, and other local MCP hosts can operate the same project. The included web UI is optional; its built-in chat uses Codex separately.
What it does
Keeps supplied photos, dimensions, SVGs, and references with the project.
Makes a new
.blendrevision for every edit; records working and approved versions separately.Queues Blender work, keeps logs, and renders real PNGs from a frozen scene snapshot.
Provides project, image inspection, editing, render, and asset publishing tools over MCP.
Can publish a model collection at a stable library path for linked scene files.
It does not supply a hosted AI model, a cloud renderer, or an image generator. Blender runs locally. The bundled product studio skill contains the modeling and photography workflow.
Related MCP server: BlenderMCP
Install and start
Requirements: Node.js 22+, Blender installed locally, and enough disk space for .blend snapshots and renders. Development was done with Blender 5.2.1; check compatibility before relying on another version. A Codex login is needed only for the optional chat in the web UI.
git clone https://github.com/SanJoeng/blender-product-studio-agent.git
cd blender-product-studio-agent
npm ci
npm run build
npm startOpen http://127.0.0.1:4318. On macOS, Start.command also installs dependencies if needed, builds, and opens the local page. If Blender is not found, set BLENDER_PATH in .env using .env.example. The data directory is .studio/ by default and is excluded from Git. Back it up separately.
Use from Claude Code
Keep npm start running. In another terminal, register the local MCP adapter using the absolute path to your clone:
claude mcp add --transport stdio product-studio -- node /ABSOLUTE/PATH/blender-product-studio-agent/dist/mcp-external.jsStart Claude Code and ask it to call list_projects, then select_project or create_project. It should read SKILL.md through read_skill before modeling. For example:
Use product-studio MCP. Create a project for this 100 mm amber bottle, read the bundled skill, then model an editable bottle and make a small preview. Wait for the Blender jobs and inspect the preview image.
Claude Code's official MCP setup guide describes claude mcp add and project configuration. No Codex account is needed for this path. The Claude Code process and the studio server must run on the same computer.
Use from another AI harness
Configure a local stdio MCP server with:
{
"command": "node",
"args": ["/ABSOLUTE/PATH/blender-product-studio-agent/dist/mcp-external.js"]
}Use the host's own MCP configuration format. Run the studio server first. The client controls its own model and login; this repository provides tools and workflow guidance. Typical sequence:
list_projects→select_projectorcreate_project→get_project.read_skill({"path":"SKILL.md"})and the relevant reference guide. Useimport_local_inputfor explicitly supplied photo/SVG paths, thenview_imageon their project previews. Useimport_blend_pathfor an existing.blend.edit_scenewith Blender Python. It returns a job ID. Callget_jobuntil completed.render_scenefrom the exact revision ID, thenget_job, thenview_imageon the returned preview path.Use
select_revisionfor rollback; usepublish_assetwhen the reusable model should be updated for linked scenes. Long-running jobs can be stopped withcancel_job.
The MCP adapter selects one active project per client connection. Set STUDIO_PROJECT_ID in the adapter environment to preselect a known project; otherwise use the project tools. If the studio uses a custom data directory or port, pass the same STUDIO_DATA_DIR and STUDIO_URL=http://127.0.0.1:PORT to the adapter. Its local connection secret is generated in the data directory; do not copy it into public configuration files.
Architecture
Claude Code / another local MCP host ── stdio MCP ──┐
├─ local studio server ── Blender CLI ── .blend / PNG
Web UI ── optional Codex chat ── scoped stdio MCP ────┘ │
└─ project files, versions, logsThe server binds only to 127.0.0.1. Its independent MCP adapter is a local process, not a public remote MCP URL. The studio serializes Blender jobs across clients. Completed images do not update automatically when a source model changes; new renders use the chosen revision.
Development
npm run check
npm test
npm run smokenpm test exercises the independent MCP handshake and project tools without running Blender. npm run smoke runs a small real Blender edit and render. Model judgment still requires inspecting reference photos and previews.
License
GPL-3.0-only. The bundled skill has its own copy of the same license. User projects and uploaded product assets are stored outside the source tree and are not included in this repository.
This server cannot be deployed
Maintenance
Related MCP Connectors
Cloud Blender for AI agents: scenes, assets, renders, MP4, STL, GLB — over hosted remote MCP.
Generate, edit, and deploy immersive 3D/WebGL web projects from any MCP assistant.
Generate game-ready 3D models, textures, and audio from natural language, over MCP.
Control Unreal Engine to browse assets, import content, and manage levels and sequences. Automate…
Related MCP Servers
- AlicenseBqualityDmaintenanceBlenderMCP enables Claude AI to directly interact with and control Blender for prompt-assisted 3D modeling, scene creation, and manipulation. It supports object and material control, scene inspection, and execution of Python code through natural language commands.17MIT
- AlicenseBqualityDmaintenanceEnables Claude AI to directly control Blender for automated 3D modeling, scene creation, and object manipulation. It provides tools for material management, scene inspection, and integration with third-party asset libraries like Poly Haven and Sketchfab.102MIT
- AlicenseNot gradedqualityDmaintenanceEnables executing Python scripts, rendering scenes, and controlling 3D objects in Blender via Claude, with support for Cycles and EEVEE engines.MIT
- AlicenseNot gradedqualityCmaintenanceEnables any MCP client to drive Blender 5.2 LTS through natural language, with tools for scene inspection, object creation and transformation, material and modifier handling, rendering, viewport capture, and guarded Python execution.2MIT