Solo Dev Uses Claude + Blender MCP to Create App Store Video in 90 Minutes

A solo developer on r/ClaudeAI shared their experience using Anthropic's Claude with a Blender MCP server to produce a 10-second vertical launch video for their habit tracker app, Spira. The project took about 90 minutes of back-and-forth with the AI, including three full renders, and resulted in ~800 lines of Python automatically generated and executed inside Blender.
Workflow
- Setup: Connected the Blender MCP server to Claude, then described the desired shot: a floating phone in a Miyazaki-meets-Apple atmosphere, drifting dust motes, the app on screen, with a slow camera reveal ending on a flower close-up.
- Reference curation: Claude convened a "committee" of cinematographic references (Lubezki, Hokusai, James Cameron) before designing the shot. The user initially felt this was overengineering, but the final output justified it.
- Auto screen recording processing: The user provided an iPhone screen recording. Claude automatically cropped out the iOS recording bar using
ffmpegbefore mapping the video onto the 3D phone screen. - Iterative refinement: The first pass was too aggressive — "Fibonacci petal explosion + glowing roots, looked like a startup logo." The user prompted, "make it gentler, like a Miyazaki dream," yielding the final version.
Technical details
- Tools: Claude (likely Sonnet) + Blender MCP server, ffmpeg for auto-crop.
- Output: ~800 lines of Python written and executed in Blender, covering camera trajectory, emissive materials, volumetric fog, particle staggering — all controlled conversationally.
- Time: ~90 minutes total, three full renders.
Who this is for
Solo developers or small teams who need to produce promotional 3D visuals without spending a week on traditional 3D workflow, and are comfortable iterating with AI via chat.
📖 Read the full source: r/ClaudeAI
👀 See Also

Helix: Open-Source Framework Turns Claude into Personal AI Agent for macOS
Helix is an open-source framework that connects Claude via Claude Code in Terminal to macOS through four MCP server plugins, enabling Claude to control applications, maintain persistent memory, run scheduled tasks, and operate with local voice processing.

Reverse Engineering Apple Neural Engine for Training MicroGPT Models
A developer reverse engineered Apple's Neural Engine private APIs to create a training pipeline for a 110M parameter MicroGPT model, achieving 6.6 TFLOPs/watt power efficiency on M4 Mac hardware.

Qwen 3.6 27B with MTP on V100 32GB: 54 t/s via llama.cpp Branch
am17an's MTP branch of llama.cc runs Qwen 3.6 27B at 54 t/s on V100 32GB via PCIe adapter, dropping to 29-30 t/s without MTP.

MCP Context Bloat: Real Costs and a Practical Fix for Claude Code Users
Running 9 MCP servers in Claude Code leads to 38k token cold starts, ~$700/month in tool definition overhead, and degraded model performance. A gateway pattern with BM25 ranking cuts context to 4k.