Most Godot AI demos start from an empty project.
I wanted to test a harder case: can an AI agent work inside an existing Godot project and recover when it makes a mistake?
So I tested Fennara MCP with Codex on GDQuest’s open-source Godot 4 Open RPG project.
The task was to add a progression feature where Baloo, the Bear player battler, unlocks a new combat ability called Tactical Guard after winning an encounter.
The interesting part: the first script Codex wrote was broken.
Instead of silently handing me broken Godot code, Fennara sent feedback from Godot back to the AI. Codex saw the diagnostics, patched the script, and kept going.
That is the part I care about.
Traditional MCP gives an AI commands.
Fennara gives the AI feedback from Godot:
- GDScript diagnostics
- scene validation
- runtime feedback
- scene tree inspection
- node properties
- SemanticSearch
- patch-and-rerun workflows
The point is not that AI magically built a game.
The point is that AI agents need immediate feedback from the real engine before they can be trusted in real projects.
Video:
https://www.youtube.com/watch?v=0Egu3S-9MM0
Godot MCP overview:
Top comments (0)