Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
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.
The system consists of two main components:
addon.py
): A Blender addon that creates a socket server within Blender to receive and execute commandssrc/blender_mcp/server.py
): A Python server that implements the Model Context Protocol and connects to the Blender addonIf you're on Mac, please install uv as
brew install uv
On Windows
pip install uv
Otherwise installation instructions are on their website: Install uv
⚠️ Do not proceed before installing UV
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"
]
}
}
}
Run blender-mcp without installing it permanently through uvx. Go to Cursor Settings > MCP and paste this as a command.
uvx blender-mcp
⚠️ Only run one instance of the MCP server (either on Cursor or Claude Desktop), not both
addon.py
file from this repoaddon.py
fileOnce 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.
get_scene_info
- Gets scene informationget_object_info
- Gets detailed information for a specific object in the scenecreate_primitive
- Create basic primitive objects with optional colorset_object_property
- Set a single property of an objectcreate_object
- Create a new object with detailed parametersmodify_object
- Modify an existing object's propertiesdelete_object
- Remove an object from the sceneset_material
- Apply or create materials for objectsexecute_blender_code
- Run any Python code in Blenderget_polyhaven_categories
- Get a list of categories for PolyHaven assets (HDRIs, textures, models)search_polyhaven_assets
- Search for assets on PolyHaven with optional category filteringdownload_polyhaven_asset
- Download and import a PolyHaven asset into BlenderTo see everything in Poly Haven, see here
Here are some examples of what you can ask Claude to do:
The system uses a simple JSON-based protocol over TCP sockets:
type
and optional params
status
and result
or message
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.Contributions are welcome! Please feel free to submit a Pull Request.
This is a third-party integration and not made by Blender.