Welcome to the Blender MCP community! This folder is a space for users to share their creative works, recorded sessions, and documentation.
Important
Core Philosophy: A session should replay successfully on a fresh Blender file. This ensures your contribution is portable and works for everyone.
Before uploading, you need to export a clean recording of your build. Follow this 3-step pipeline:
Start the MCP server in recording mode:
python -m src.main serve --record my_session.json --name "My Project"Then build your scene using n8n or your AI agent as usual. Every modeling command will automatically be saved. When finished, stop the server — your session.json is ready.
Tip
Record only the final successful build. Avoid recording failed experiments to keep sessions clean.
Large or messy sessions make playback slow for others. Use Studio to tidy it:
- Run the Bridge Server, then open
http://localhost:8008/studio/(orcd studio && npm run devfor hot-reload). - Load your
session.json. - Delete mistakes or unnecessary commands.
- Export JSON to save the cleaned file.
This keeps the community gallery fast and reliable.
Create a new folder in community/ with the following structure:
community/your_project/
├── README.md # Instructions and documentation
├── session.json # The cleaned MCP session
└── assets/
└── images/ # screenshots, renders, etc.
Then open a Pull Request 🚀
As the community grows, we may transition from a folder-based structure to an indexed gallery (e.g., a database-backed catalog such as Firestore) to better showcase projects.