MCP Servers

A collection of Model Context Protocol servers, templates, tools and more.

Godot MCP workflow for AI agents using Fennara: diagnostics, scene validation, runtime feedback, screenshots, SemanticSearch, and patch-and-rerun loops.

Created 6/1/2026
Updated about 5 hours ago
Repository documentation and setup instructions

Fennara Godot MCP

Fennara MCP is a Godot MCP workflow for AI agents using diagnostics, scene validation, runtime feedback, screenshots, SemanticSearch, and patch-and-rerun loops inside real Godot projects.

Traditional MCP gives an AI commands.

Fennara gives the AI feedback from Godot:

  • GDScript diagnostics
  • scene validation
  • runtime errors
  • scene tree inspection
  • node properties
  • screenshots
  • SemanticSearch
  • patch-and-rerun workflows

Fennara is not trying to make Godot optional. It makes AI agents accountable to the real Godot engine.

Why This Exists

Most Godot MCP servers expose editor commands like create node, set property, save scene, run project, read logs, and take screenshots.

That is useful, but it is not enough for real projects.

An AI agent can call commands successfully and still leave behind broken scripts, invalid scenes, missing resources, bad NodePaths, or runtime errors. Fennara is built around the feedback loop after the command: inspect, edit, receive Godot feedback, patch, and rerun.

Demo

Start with the real-project test: Fennara MCP with Codex on GDQuest's open-source Godot 4 Open RPG project.

Fennara MCP tested on a real Godot RPG project

In the demo, Codex works on an existing RPG codebase instead of an empty project. The first script breaks, Fennara returns Godot feedback, and Codex patches the implementation.

Demo notes:

Links

  • Godot MCP overview: https://www.fennara.io/godot-mcp
  • Godot AI plugin overview: https://www.fennara.io/godot-ai-plugin
  • Setup guide: https://www.fennara.io/docs/get-started
  • MCP docs: https://www.fennara.io/docs/mcp
  • Godot tools docs: https://www.fennara.io/docs/godot-plugin/tools
  • Website: https://www.fennara.io

Included Addon Preview

This repository includes the current Windows Godot addon payload under:

addons/fennara

The included binary payload is intended as a public preview/reference package. For normal installation and account setup, use the Fennara dashboard installer from the setup guide:

https://www.fennara.io/docs/get-started

The installer handles the local device identity, Godot project selection, API key flow, plugin install, local MCP server install, and supported MCP app configuration.

Supported AI Apps

Fennara MCP is designed for workflows with:

  • Codex
  • Cursor
  • Claude Code
  • Claude Desktop
  • Antigravity

Support can vary by operating system and client config format. See the MCP setup docs for details.

What Fennara Tools Do

Fennara exposes Godot-aware tools for agent workflows:

  • file and script writes with diagnostics
  • one-off scene edit scripts
  • scene tree inspection
  • node property inspection
  • Godot class/API inspection
  • runtime error capture
  • scene screenshots
  • scene validation
  • SemanticSearch for indexed project code

Example Prompts

Use Fennara MCP to inspect the current Godot project, run fennara_status, read the scene tree, check diagnostics, and explain what project is connected.
Use Fennara MCP to inspect this Godot project and make a small change that fits the existing architecture. Explain what files changed and what Godot feedback you used while working.
Work inside this existing Godot project like a careful contributor. Inspect the architecture first, make the smallest useful change, and explain how to test it in-game.

Repository Status

Fennara is in active development. This public repository is for discoverability, documentation, setup links, demos, and addon preview packaging. Some service-side components are not open source.

License

See LICENSE.md.

Quick Setup
Installation guide for this server

Installation Command (package not published)

git clone https://github.com/fennaraOfficial/fennara-godot-mcp
Manual Installation: Please check the README for detailed setup instructions and any additional dependencies required.

Cursor configuration (mcp.json)

{ "mcpServers": { "fennaraofficial-fennara-godot-mcp": { "command": "git", "args": [ "clone", "https://github.com/fennaraOfficial/fennara-godot-mcp" ] } } }