BlenderMCP Server

1

Add it to Claude Code

Run this in a terminal.

Run in terminal
claude mcp add blender-mcp-fcee -- uvx blender-mcp
README.md

Connect Claude AI to Blender for 3D modeling and scene manipulation.

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.

Full tutorial

Join the Community

Give feedback, get inspired, and build on top of the MCP: Discord

Supporters

CodeRabbit

All supporters:

Support this project

Current version(1.5.5)

  • Added Hunyuan3D support
  • View screenshots for Blender viewport to better understand the scene
  • Search and download Sketchfab models
  • Support for Poly Haven assets through their API
  • Support to generate 3D models using Hyper3D Rodin
  • Run Blender MCP on a remote host
  • Telemetry for tools executed (completely anonymous)

Installating a new version (existing users)

  • For newcomers, you can go straight to Installation. For existing users, see the points below
  • Download the latest addon.py file and replace the older one, then add it to Blender
  • Delete the MCP server from Claude and add it back again, and you should be good to go!

Features

  • Two-way communication: Connect Claude AI to Blender through a socket-based server
  • Object manipulation: Create, modify, and delete 3D objects in Blender
  • Material control: Apply and modify materials and colors
  • Scene inspection: Get detailed information about the current Blender scene
  • Code execution: Run arbitrary Python code in Blender from Claude

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

  • Blender 3.0 or newer
  • Python 3.10 or newer
  • uv package manager:

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

  • To use as a global server, use "add new global MCP server" button and paste
  • To use as a project specific server, create .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"
            ]
        }
    }
}

Cursor setup video

⚠️ Only run one instance of the MCP server (either on Cursor or Claude Desktop), not both

Visual Studio Code Integration

Prerequisites:

Tools (4)

object_manipulationCreate, modify, and delete 3D objects in the Blender scene.
material_controlApply and modify materials and colors on 3D objects.
scene_inspectionRetrieve detailed information about the current Blender scene.
code_executionExecute arbitrary Python code within the Blender environment.

Environment Variables

BLENDER_HOSTHost address for Blender socket server
BLENDER_PORTPort number for Blender socket server

Configuration

claude_desktop_config.json
{"mcpServers": {"blender": {"command": "uvx", "args": ["blender-mcp"]}}}

Try it

Create a new cube in the center of the scene and apply a metallic blue material to it.
List all objects currently present in the Blender scene.
Download a 3D model of a chair from Sketchfab and import it into my scene.
Run a Python script to distribute 10 spheres randomly across the viewport.
Generate a 3D model of a coffee mug using Hyper3D Rodin.

Frequently Asked Questions

What are the key features of BlenderMCP?

Two-way communication between Claude AI and Blender via socket server. Direct object creation, modification, and deletion. Material and color application through natural language. Scene inspection and viewport visualization. Arbitrary Python code execution within Blender.

What can I use BlenderMCP for?

Automating repetitive 3D modeling tasks using natural language prompts. Rapid prototyping of 3D scenes by describing layouts to Claude. Integrating external asset libraries like Poly Haven directly into Blender workflows. Programmatically generating complex 3D geometry via AI-assisted Python scripts.

How do I install BlenderMCP?

Install BlenderMCP by running: uvx blender-mcp

What MCP clients work with BlenderMCP?

BlenderMCP works with any MCP-compatible client including Claude Desktop, Claude Code, Cursor, and other editors with MCP support.

Turn this server into reusable context

Keep BlenderMCP docs, env vars, and workflow notes in Conare so your agent carries them across sessions.

Need the old visual installer? Open Conare IDE.
Open Conare