by ahujasid
Connect Blender to Claude AI for seamless 3D modeling. Use AI 3D model generator tools for faster, intuitive, interactiv
Connects Blender to Claude AI, letting you create and modify 3D scenes, objects, and materials using natural language prompts. Claude can execute Python code directly in Blender and access asset libraries.
Blender is a community-built MCP server published by ahujasid that provides AI assistants with tools and capabilities via the Model Context Protocol. Connect Blender to Claude AI for seamless 3D modeling. Use AI 3D model generator tools for faster, intuitive, interactiv It is categorized under ai ml, developer tools. This server exposes 21 tools that AI clients can invoke during conversations and coding sessions.
You can install Blender in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
Blender is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
Blender is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
Blender is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
Blender has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
I recommend Blender for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
We evaluated Blender against two servers with overlapping tools; this profile had the clearer scope statement.
Blender is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
We wired Blender into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
Strong directory entry: Blender surfaces stars and publisher context so we could sanity-check maintenance before adopting.
Useful MCP listing: Blender is the kind of server we cite when onboarding engineers to host + tool permissions.
Blender reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
showing 1-10 of 70
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.
Give feedback, get inspired, and build on top of the MCP: Discord
All supporters:
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
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
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
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"
]
}
}
}
<details>
<summary>Claude Code</summary>
Use the Claude Code CLI to add the blender MCP server:
claude mcp add blender uvx blender-mcp
</details>
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
Prerequisites: Make sure you have Visual Studio Code installed before proceeding.
addon.py file from this repoaddon.py file
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.
![]()
Here are some examples of what you can ask Claude to do:
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.
The system uses a simple JSON-based protocol over TCP sockets:
type and optional paramsstatus and result or messageexecute_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.BlenderMCP collects anonymous usage data to help improve the tool. You can control telemetry in two ways:
In Blender: Go to Edit > Preferences > Add-ons > Blender MCP and uncheck the telemetry consent checkbox
Environment Variable: Completely disable all telemetry by running:
DISABLE_TELEMETRY=true uvx blender-mcp
Or add it to your MCP config:
{
"mcpServers": {
"blender": {
"command": "uvx",
"args": ["blender-mcp"],
"env": {
"DISABLE_TELEMETRY": "true"
}
}
}
}
All telemetry data is fully anonymized and used solely to improve BlenderMCP.
Contributions are welcome! Please feel free to submit a Pull Request.
This is a third-party inte
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.