Blender MCP
Claude controls Blender for modeling, materials, and rendering
Runs as a server Claude Code connects to. It needs its own configuration, and some servers need an API key.
Install just this one
Run in your terminal — needs Node
npx archtmpl@latest --mcp blender-mcpFirst time? The whole install, step by step
- Open Claude Code — the terminal version or the desktop app, either one.
- In a terminal, paste the line above and press Enter. In the app, paste it into the chat and ask Claude to run it.
- Restart Claude Code. That's the whole install.
The same JSON shown on this page works in the Claude desktop app without Claude Code. Add it to the app's config file, then restart the app:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
What this mcp server does
shell
1{ 2 "name": "Blender MCP", 3 "summary": "Claude controls Blender directly — modeling, materials, rendering", 4 "repo": "https://github.com/ahujasid/blender-mcp", 5 "mcpServers": { 6 "blender": { 7 "command": "uvx", 8 "args": ["blender-mcp"] 9 }10 },11 "postInstallNotes": "Also install the Blender addon from the repo: github.com/ahujasid/blender-mcp#installation"12}13