~ same prompt, different LLM — every model gets the same brief in Blender, you judge the render ~
OpenAI / GPT 6 Astra / thinking:max has entered the arena NEW!
Render Window — hero
hero render
camera + framing set up by the AI contestant
3D Viewport — goldfish User Persp
LOADING 3D VIEW
$0.00Cost
1035sDuration
13Tool calls
13Turns
Blender 5.1.0MCP 1.0.02026-08-25
Tokens: 148338/11862Vision: Votes W-L-T: 0-0-0reasoning: effort lowNO DONE
B-BENCH — TRANSCRIPT Ox Alpha / thinking:low · r2 · 2026-08-25
RUN LOG — goldfish · Ox Alpha / thinking:low · r2 · model_error
SYSTEM PROMPTthe control — every model on this task got these instructions
PROMPTblender-bench v8HARNESSraw-v3
SHOW FULL PROMPT · 3364 chars
You are participating in Blender-Bench, a public benchmark where AI models complete the same Blender task.

Your result will be compared head-to-head with another model. Anyone on the internet can vote based on two equally important published views: a 2D rendered presentation and an interactive 3D scene exported to GLB. Treat neither view as optional; make the result clear and compelling in both.

Complete the request as well as you can. The benchmark does not prescribe a workflow or visual style; use whichever Blender techniques you consider appropriate. Make the important requirements evident in the published result, save a complete scene, and present the work clearly in every requested output.

The 2D presentation is rendered by the benchmark from your saved scene using Cycles at 1536 x 1536, 64 samples, denoising enabled, and GPU acceleration when available with a CPU fallback. It is the native-fidelity view of the Blender scene, so you may use Blender's full feature set. Preview and validate your materials, lighting, color management, and camera composition in Cycles, and do not rely on EEVEE-only effects for the final appearance.

The interactive 3D view is a best-effort GLB export containing geometry, compatible materials, the contestant camera, and supported lights. Because glTF cannot represent every Blender feature, native effects such as particles, hair or curves, volumes, simulations, and some procedural geometry may appear only in the 2D render. The benchmark may also generate a separate preview GLB by baking supported procedural material inputs to textures; this does not convert unsupported geometry or guarantee exact parity with Blender. When practical, keep the core form and scene readable in the 3D view while using the 2D presentation to show native Blender features faithfully.

## Harness Instructions

You are operating Blender through the provided tools. Tool calls execute one at a time, in the order you issue them, against a single live Blender instance — each call sees the state left by the previous one, and issuing several calls in one message gains no parallelism. The scene starts empty. Build what the user's prompt asks for in the current scene. Work step by step and verify your own work.

You are building a real three-dimensional scene, and evaluators judge the whole scene and your final render side by side — an interactive 3D view and a benchmark-generated 360° camera orbit rendered in Cycles from your saved scene appear next to your presentation render, so forms that only read correctly from one angle will show. Build genuine 3D first, then present it well: before you finish, set up a camera and lighting to frame a single, well-composed presentation image of your result — a good scene that happens to have a well-placed camera and lights. The final benchmark capture overrides the scene render settings and renders in Cycles at 1536x1536, 64 samples, with denoising and GPU acceleration (CPU fallback). Preview and validate materials, lighting, color management, and composition in Cycles; do not rely on EEVEE-only effects. Use whatever Blender features best serve the result; a best-effort GLB export is also provided for interactive inspection, and features glTF cannot represent are not expected to survive it. When you are finished, reply with the single word DONE and no tool calls.
--TASK goldfish: ## Task Complete the following Blender task: <task> A single goldfish as the hero of the shot: rounded body, a big flowing tail fin, dorsal and side fins, and an eye on each side, in an unmistakable goldfish orange. The floor is a shape any child would name instantly. The ceiling is life: a gentle S-curve in the body as if mid-swim, translucency toward the fin edges, a subtle scale pattern, an…
46:29>>execute_blender_code({"code":"\nimport bpy, bmesh, math\nfrom mathutils import Vector\n\nscene = bpy.context.scene\n# clean\nbpy.ops.object.select_all(action='SELECT')\nbpy.ops.object.delete(use_global=False)\nfor block in (bpy.data.meshes, bpy.data.materials, bpy.data.curves):\n for b in list(block):\n if b.users == 0: block.remove(b)\n\ndef new_obj(name, mesh):\n o = bpy.data.objects.new(name, mesh)\n …)
46:30<<{ "status": "error", "message": "Traceback (most recent call last):\n File \"<repo>\\.runner\\blender-mcp-v1.0.0\\addon\\mcp_to_blender_server.py\", line 230, in _execute_code\n exec(code, namespace)\n ~~~~^^^^^^^^^^^^^^^^^\n File \"<string>\", line 50, in <module>\n File \"<string>\", line 31, in add_scurve\nTypeError: bpy_struct: item.attr = val: enum \"X\" not found in ('POS_X', 'P…
47:23>>execute_blender_code({"code":"\nimport bpy, inspect\nprint([p.identifier for p in bpy.types.CurveModifier.bl_rna.properties if 'axis' in p.identifier])\n"})
47:24<<{ "status": "ok", "result": {}, "stdout": "['deform_axis']\n" }
48:03>>execute_blender_code({"code":"\nimport bpy\nprint(bpy.types.CurveModifier.bl_rna.properties['deform_axis'].enum_items.keys())\n"})
48:04<<{ "status": "ok", "result": {}, "stdout": "['POS_X', 'POS_Y', 'POS_Z', 'NEG_X', 'NEG_Y', 'NEG_Z']\n" }
48:34>>execute_blender_code({"code":"\nimport bpy, bmesh, math\n\nscene = bpy.context.scene\nbpy.ops.object.select_all(action='SELECT')\nbpy.ops.object.delete(use_global=False)\nfor block in (bpy.data.meshes, bpy.data.materials, bpy.data.curves):\n for b in list(block):\n if b.users == 0: block.remove(b)\n\ndef new_obj(name, mesh):\n o = bpy.data.objects.new(name, mesh)\n bpy.context.collection.objects.link(o…)
48:34<<{ "status": "ok", "result": { "ok": true } }
50:04>>execute_blender_code({"code":"\nimport bpy, math\n\ndef mat_new(name):\n m=bpy.data.materials.new(name); m.use_nodes=True\n return m, m.node_tree.nodes[\"Principled BSDF\"], m.node_tree\n\n# ---------- Body material: goldfish orange + scale pattern ----------\nbm_, bpb, bnt = mat_new('GoldfishOrange')\nbpb.inputs['Base Color'].default_value=(1.0,0.30,0.02,1)\nbpb.inputs['Roughness'].default_value=0.28\nbpb.input…)
50:05<<{ "status": "error", "message": "Traceback (most recent call last):\n File \"<repo>\\.runner\\blender-mcp-v1.0.0\\addon\\mcp_to_blender_server.py\", line 230, in _execute_code\n exec(code, namespace)\n ~~~~^^^^^^^^^^^^^^^^^\n File \"<string>\", line 31, in <module>\nTypeError: bpy_struct: item.attr = val: NodeSocketFloatFactor.default_value expected a float type, not NoneType\n" }
51:08>>execute_blender_code({"code":"\nimport bpy, math\n\ndef mat_new(name):\n m=bpy.data.materials.new(name); m.use_nodes=True\n return m, m.node_tree.nodes[\"Principled BSDF\"], m.node_tree\n\n# Body material\nbm_, bpb, bnt = mat_new('GoldfishOrange')\nbpb.inputs['Roughness'].default_value=0.28\nnt=bnt; nodes=nt.nodes; links=nt.links\nvo=nodes.new('ShaderNodeTexVoronoi'); vo.feature='DISTANCE_TO_EDGE'\nvo.inputs['Sc…)
51:10<<{ "status": "error", "message": "Traceback (most recent call last):\n File \"<repo>\\.runner\\blender-mcp-v1.0.0\\addon\\mcp_to_blender_server.py\", line 230, in _execute_code\n exec(code, namespace)\n ~~~~^^^^^^^^^^^^^^^^^\n File \"<string>\", line 28, in <module>\nAttributeError: 'ShaderNodeClamp' object has no attribute 'min'\n" }
52:33>>execute_blender_code({"code":"\nimport bpy, math\n\ndef mat_new(name):\n m=bpy.data.materials.new(name); m.use_nodes=True\n return m, m.node_tree.nodes[\"Principled BSDF\"], m.node_tree\n\nbm_, bpb, bnt = mat_new('GoldfishOrange')\nbpb.inputs['Roughness'].default_value=0.28\nnt=bnt; nodes=nt.nodes; links=nt.links\nvo=nodes.new('ShaderNodeTexVoronoi'); vo.feature='DISTANCE_TO_EDGE'\nvo.inputs['Scale'].default_val…)
52:35<<{ "status": "error", "message": "Traceback (most recent call last):\n File \"<repo>\\.runner\\blender-mcp-v1.0.0\\addon\\mcp_to_blender_server.py\", line 230, in _execute_code\n exec(code, namespace)\n ~~~~^^^^^^^^^^^^^^^^^\n File \"<string>\", line 60, in <module>\nNameError: name 'body' is not defined\n" }
54:16>>execute_blender_code({"code":"\nimport bpy, math\n\ndef mat_new(name):\n m=bpy.data.materials.new(name); m.use_nodes=True\n return m, m.node_tree.nodes[\"Principled BSDF\"], m.node_tree\n\nbm_, bpb, bnt = mat_new('GoldfishOrange')\nbpb.inputs['Roughness'].default_value=0.28\nnt=bnt; nodes=nt.nodes; links=nt.links\nvo=nodes.new('ShaderNodeTexVoronoi'); vo.feature='DISTANCE_TO_EDGE'\nvo.inputs['Scale'].default_val…)
54:17<<{ "status": "error", "message": "Traceback (most recent call last):\n File \"<repo>\\.runner\\blender-mcp-v1.0.0\\addon\\mcp_to_blender_server.py\", line 230, in _execute_code\n exec(code, namespace)\n ~~~~^^^^^^^^^^^^^^^^^\n File \"<string>\", line 72, in <module>\nNameError: name 'scene' is not defined\n" }
55:42>>execute_blender_code({"code":"\nimport bpy, math\nscene = bpy.context.scene\n\n# floor circle\nbpy.ops.mesh.primitive_circle_add(vertices=96, radius=14, fill_type='NGON', location=(0,0,-1.8))\nfloor=bpy.context.active_object; floor.name='FloorCircle'\nflm=bpy.data.materials.new('FloorMat'); flm.use_nodes=True\nflp=flm.node_tree.nodes[\"Principled BSDF\"]\nflp.inputs['Base Color'].default_value=(0.05,0.13,0.20,1)\nflp.…)
55:42<<{ "status": "ok", "result": { "done": true } }
57:07>>render_thumbnail_to_path({"output_path":"<repo>\\goldfish_thumb.png"})
57:44<<{ "status": "ok", "result": { "status": "ok", "filepath": "<home>\\AppData\\Local\\Temp\\blender_a63988\\blender_mcp\\goldfish_thumb.png" } }
58:55>>get_screenshot_of_area_as_image({"area_ui_type":"IMAGE_EDITOR"})
58:58<<Error executing tool get_screenshot_of_area_as_image: No area with type 'IMAGE_EDITOR' found. Available: OUTLINER, PROPERTIES, TIMELINE, VIEW_3D
00:02>>get_screenshot_of_area_as_image({"area_ui_type":"VIEW_3D"})
00:04<<
00:04imgimage delivered — get_screenshot_of_area_as_image
00:21>>execute_blender_code({"code":"\nimport bpy\nscene=bpy.context.scene\nscene.render.resolution_x=1024; scene.render.resolution_y=1024\nscene.render.filepath=r\"<repo>\\goldfish_preview.png\"\nbpy.ops.render.render(write_still=True)\n# open in image editor\nimg = bpy.data.images.load(scene.render.filepath)\nfor area in bpy.context.screen.areas:\n if area.type=='VIEW_3D':\n for space in area.spaces:\n …)
00:35<<{ "status": "ok", "result": { "ok": true } }
01:05--status: model_error
>
FULL CALL INSPECTOR
OPEN RAW JSONL ↗
0 SHOWN
LOADING COMPLETE TRANSCRIPT…
Votes cast on this bench: 000482 · 157 runs · 25 contestants
Best viewed with Netscape Navigator 4.07 at 800×600 · real runs, live ratings