How to Set Up Blender MCP in Cursor (2026 Guide)
Yes, you can use MCP with Cursor. Cursor has native support for MCP servers, making it one of the best IDEs for AI-powered 3D modeling with Blender. This guide walks you through the complete setup — from installing dependencies to creating your first 3D model.
Cursor’s MCP integration means you can use Blender MCP as either a global server (available in all projects) or a project-specific server. The setup takes about 5 minutes.
Prerequisites
- Blender 3.0+ — Download from blender.org
- Cursor IDE — Download from cursor.com
- uv package manager — Required for running the MCP server
Step 1: Install uv Package Manager
macOS
brew install uvStep 2: Add the MCP Server in Cursor
You have two options — global server or project-specific.
Option A: Global MCP Server (Recommended)
Go to Cursor Settings → MCP and click “Add new global MCP server”. Paste this config:
macOS / Linux
{
"mcpServers": {
"blender": {
"command": "uvx",
"args": ["blender-mcp"]
}
}
}Option B: Project-Specific Server
Create a .cursor/mcp.json file in your project root:
macOS / Linux
{
"mcpServers": {
"blender": {
"command": "uvx",
"args": ["blender-mcp"]
}
}
}Windows users: Note the cmd + /c wrapper. This is required because Windows doesn’t handle uvx directly in the same way macOS/Linux does.
Step 3: Install the Blender Addon
Download addon.py
Get the latest addon.py from the Blender MCP GitHub repo .
Install in Blender
Open Blender → Edit → Preferences → Add-ons → “Install…” → Select addon.py.
Enable it
Check the box next to “Interface: Blender MCP”.
Step 4: Connect and Start Building
Start the Blender server
In Blender’s 3D Viewport, press N to open the sidebar → find the “BlenderMCP” tab → click “Connect to Claude” (the button works for all clients, not just Claude).
Open Cursor Agent
In Cursor, open the AI chat (Agent mode). You should see the Blender MCP tools available.
Send your first prompt
Try: “Create a red metallic sphere above a blue cube in Blender”
Only run one MCP server instance at a time. If you also have Claude Desktop configured with Blender MCP, disconnect it first. Running both simultaneously causes connection conflicts.
How to See MCP in Cursor
To verify the MCP server is connected:
- Go to Cursor Settings → MCP — you should see “blender” listed with a green status
- In the Agent chat, MCP tools will appear in the tool list
- If the status shows red/disconnected, try restarting Cursor
What Does MCP Enable in Cursor?
With Blender MCP connected, Cursor’s AI agent can:
- Create and modify 3D objects — meshes, materials, lighting
- Inspect your Blender scene — get object lists, material data, scene structure
- Download assets — Poly Haven HDRIs/textures/models, Sketchfab models
- Generate 3D models — via Hyper3D Rodin and Hunyuan3D
- Execute Python code — run any Blender Python script
- Take viewport screenshots — the AI can see your current scene
This is different from using Cursor for coding — the MCP tools give Cursor direct access to Blender’s 3D environment.
Troubleshooting
MCP server shows red/disconnected in Settings
- Verify uv is installed:
uv --version - On Windows, make sure the config uses
cmd+/cwrapper - Restart Cursor after adding the config
- Check that no other MCP client (Claude Desktop) is already connected
Blender connection fails
- Make sure the BlenderMCP addon is enabled and the “Connect” button has been clicked
- Check that port 9876 is not blocked by a firewall
- Try restarting Blender and reconnecting
First command times out
Known quirk — the first command sometimes fails. Send a second message and it typically works.
Performance with large scenes
For complex scenes, break requests into smaller steps. Cursor handles sequential tool calls well, so multi-step prompts are often more reliable than single complex ones.
For a deep dive on how the server works, see our MCP Server architecture guide.
Using a different AI client?
FAQ
Can I use MCP with Cursor?
Yes. Cursor has native MCP support. Go to Settings → MCP to add MCP servers. You can configure Blender MCP as a global server (available in all projects) or as a project-specific server via .cursor/mcp.json.
How to see MCP in Cursor?
Go to Cursor Settings → MCP to see all configured MCP servers and their connection status. A green indicator means the server is connected. You can also see available MCP tools in the Agent chat's tool list.
What does MCP enable in Cursor?
MCP gives Cursor's AI agent the ability to interact with external tools. With Blender MCP, Cursor can create 3D objects, apply materials, set up lighting, download assets from Poly Haven, generate AI models, execute Python code in Blender, and take viewport screenshots.
Is Blender MCP free to use with Cursor?
Yes. Blender MCP is free and open source. Cursor itself has a free tier that includes AI features. The full setup costs nothing.
Get Started with Blender MCP
Blender MCP is free, open-source, and community-driven. Star the repo, report issues, or contribute — all on GitHub.
View on GitHub →