Blender 5 + Claude Code MCP

Part 1 — Minimum Blender 5 survival skills

Just enough Blender 5 to follow what Claude builds: the 3D Viewport, Outliner, Properties, the N-panel Sidebar, navigation, Object vs Edit mode, and 3D vocabulary for developers.

Before Claude can build anything for you, you need Blender 5 installed and you need to recognize what you are looking at. That is the entire goal of this part: you install Blender 5 and learn just enough to see what Claude creates, modifies, and organizes. You are not learning to model by hand.

Think of Blender as a 3D scene you observe and Claude as the operator who edits it through the Blender MCP bridge. You read the scene; Claude does the work. Everything below is about orientation — where things live and how to look at them — not about mastering tools.

Lesson 1 — Install Blender 5 and Understand the Screen

Download the latest Blender 5 (5.0 or newer) from blender.org and install it for your platform. Blender 5.0 was released in November 2025; any 5.x build works for this tutorial. When you open it, you land on the default scene with a few starter objects and a handful of editor panels.

The survival UI — the 3D Viewport, Outliner, Properties editor, the N-key Sidebar, and the File menu — is unchanged from earlier Blender versions, so older screenshots and muscle memory still apply. Here is the short list of areas you actually need to know, and why each one matters once Claude starts changing the scene.

Blender areaWhy it matters
3D ViewportWhere Claude-created objects appear
OutlinerThe object tree — scene hierarchy at a glance
Properties editorMaterials, object settings, and render settings
Sidebar (N-panel)Where the BlenderMCP tab appears
File menuSave your .blend and export .glb

Do not try to learn the full modeling toolset. Claude does the modeling. You only need to know where to look so you can confirm the result.

Exercise

Open Blender 5 and locate each of these in the default scene: the Cube, the Camera, the Light, the Outliner, the 3D Viewport, the Properties editor, and the Sidebar. You do not need to do anything to them — you only need to know where each one is so you can find it again after Claude modifies the scene.

Lesson 2 — Basic View Controls

This is navigation only, and it is identical in Blender 5. You are not selecting, moving, or editing anything here — you are just learning to look at the scene from different angles so you can inspect whatever Claude builds. These controls assume a mouse with a middle button (the scroll wheel usually clicks).

ActionControl
Orbit viewMiddle mouse drag
ZoomMouse wheel
PanShift + middle mouse
Front viewNumpad 1
Side viewNumpad 3
Top viewNumpad 7
Camera viewNumpad 0
Frame selectedNumpad . (period)

On a laptop without a numpad, you can enable Emulate Numpad in Edit > Preferences > Input to map the number row to these views.

Exercise

Later in this tutorial you will ask Claude to create three cubes. When you do, practice viewing them: orbit around them, zoom in and out, then snap to Front (Numpad 1), Top (Numpad 7), and Camera (Numpad 0) views. The goal is to comfortably inspect anything Claude places in the scene from any angle.

Lesson 3 — Object Mode vs Edit Mode

This is the one concept you genuinely must understand. Blender has different modes, but you only need two of them, and you will live almost entirely in the first.

ModeMeaning
Object ModeMove, rotate, scale, and organize whole objects
Edit ModeChange the actual mesh geometry (the vertices, edges, and faces)

Stay in Object Mode most of the time and let Claude do the modeling. You only need Edit Mode later, for optional manual cleanup — never to build models from scratch.

Lesson 4 — Basic 3D Vocabulary

Claude will describe the scene back to you using Blender’s terms — when you ask it to inspect a scene or report what it created, it talks about objects, meshes, materials, and collections. As a developer, you already have good mental models for all of these. This table maps Blender vocabulary onto concepts you use every day.

TermDeveloper analogy
SceneThe project / world / document
ObjectAn entity or node
MeshGeometry data
MaterialA visual style or shader
CollectionA folder or group
TransformPosition, rotation, scale
OriginThe pivot point
CameraThe render viewpoint
LightScene illumination
GLBThe export format for games and the web

With Blender installed, your bearings set, and this vocabulary in hand, you are ready to wire up the bridge. In the next part you will connect Claude Code to Blender through the MCP server so your prompts start changing the scene you just learned to read.