BlenderMCP - Blender Model Context Protocol Integration
BlenderMCP connects Blender to Claude AI through the Model Context Protocol (MCP), allowing Claude to directly interact with and control Blender. This integration enables prompt assisted 3D modeling, scene creation, and manipulation.
We have no official website. Any website you see online is unofficial and has no affiliation with this project. Use them at your own risk.
Join the Community
Give feedback, get inspired, and build on top of the MCP: Discord
Supporters
All supporters:
Release notes (1.4.0)
Previously added features:
Installating a new version (existing users)
Features
Components
The system consists of two main components:
1. Blender Addon (addon.py): A Blender addon that creates a socket server within Blender to receive and execute commands 2. MCP Server (src/blender_mcp/server.py): A Python server that implements the Model Context Protocol and connects to the Blender addon
Installation
Prerequisites
If you're on Mac, please install uv as
brew install uv
On Windows
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
and then add uv to the user path in Windows (you may need to restart Claude Desktop after):
$localBin = "$env:USERPROFILE\.local\bin"
$userPath = [Environment]::GetEnvironmentVariable("Path", "User") [Environment]::SetEnvironmentVariable("Path", "$userPath;$localBin", "User")
Otherwise installation instructions are on their website: Install uv
β οΈ Do not proceed before installing UV
Environment Variables
The following environment variables can be used to configure the Blender connection:
BLENDER_HOST: Host address for Blender socket server (default: "localhost")BLENDER_PORT: Port number for Blender socket server (default: 9876)Example:
export BLENDER_HOST='host.docker.internal'
export BLENDER_PORT=9876
Claude for Desktop Integration
Watch the setup instruction video (Assuming you have already installed uv)
Go to Claude > Settings > Developer > Edit Config > claude_desktop_config.json to include the following:
{
"mcpServers": { "blender": { "command": "uvx", "args": [ "blender-mcp" ] } } }
Claude Code
Use the Claude Code CLI to add the blender MCP server:
claude mcp add blender uvx blender-mcp
Cursor integration

For Mac users, go to Settings > MCP and paste the following
.cursor/mcp.json in the root of the project and paste{
"mcpServers": { "blender": { "command": "uvx", "args": [ "blender-mcp" ] } } }
For Windows users, go to Settings > MCP > Add Server, add a new server with the following settings:
{
"mcpServers": { "blender": { "command": "cmd", "args": [ "/c", "uvx", "blender-mcp" ] } } }
β οΈ Only run one instance of the MCP server (either on Cursor or Claude Desktop), not both
Visual Studio Code Integration
_Prerequisites_: Make sure you have Visual Studio Code installed before proceeding.

Installing the Blender Addon
1. Download the addon.py file from this repo 1. Open Blender 2. Go to Edit > Preferences > Add-ons 3. Click "Install..." and select the addon.py file 4. Enable the addon by checking the box next to "Interface: Blender MCP"
Usage
Starting the Connection
1. In Blender, go to the 3D View sidebar (press N if not visible) 2. Find the "BlenderMCP" tab 3. Turn on the Poly Haven checkbox if you want assets from their API (optional) 4. Click "Connect to Claude" 5. Make sure the MCP server is running in your terminal
Using with Claude
Once the config file has been set on Claude, and the addon is running on Blender, you will see a hammer icon with tools for the Blender MCP.
Capabilities
Example Commands
Here are some examples of what you can ask Claude to do:
Hyper3D integration
Hyper3D's free trial key allows you to generate a limited number of models per day. If the daily limit is reached, you can wait for the next day's reset or obtain your own key from hyper3d.ai and fal.ai.
Troubleshooting
Technical Details
Communication Protocol
The system uses a simple JSON-based protocol over TCP sockets:
type and optional paramsstatus and result or messageLimitations & Security Considerations
execute_blender_code tool allows running arbitrary Python code in Blender, which can be powerful but potentially dangerous. Use with caution in production environments. ALWAYS save your work before using it.Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Disclaimer
This is a third-party integration and not made by Blender. Made by Siddharth
BlenderMCP is an open-source integration that connects Blender (3D modeling software) to Claude AI using the Model Context Protocol (MCP). It allows you to control and manipulate Blender scenes through conversational AI prompts, enabling tasks like object creation, material editing, and scene inspection via natural language commands from within Claude. The project is a third-party tool, not officially affiliated with Blender.