.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/hi-godot/godot-ai
home/mcp-servers/hi-godot/godot-ai
hi-godot avatar

godot-ai

byhi-godot· 1 MCP server

Installs

62k

Stars

1.3k

Forks

84

Category

AI Agents & MCP

View on GitHub

TL;DR

Connect MCP clients directly to a live Godot editor via the Model Context Protocol. Over 120 ops across ~43 MCP tools (full list) let AI assistants (Claude Code, Codex, Grok Build, Antigravity, Hermes Ag

How to install godot-ai?

hi-godot/godot-ai
$git clone https://github.com/hi-godot/godot-ai

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install godot-ai by running `git clone https://github.com/hi-godot/godot-ai`, then use it for the current task and follow its documentation at https://github.com/hi-godot/godot-ai.

Files · 1

View on GitHub
README.md
1<p align="center">
2 <img src="docs/hero.png" alt="Godot AI — The wait is over" width="700">
3</p>
4 
5# Godot AI
6 
7[![CI](https://github.com/hi-godot/godot-ai/actions/workflows/ci.yml/badge.svg)](https://github.com/hi-godot/godot-ai/actions/workflows/ci.yml)
8[![codecov](https://codecov.io/gh/hi-godot/godot-ai/graph/badge.svg)](https://codecov.io/gh/hi-godot/godot-ai)
9[![Godot Asset Library](https://img.shields.io/badge/Godot-Asset%20Library-478cbf?logo=godotengine&logoColor=white)](https://godotengine.org/asset-library/asset/5050)
10[![Discord](https://img.shields.io/badge/Discord-Join%20chat-5865F2?logo=discord&logoColor=white)](https://discord.gg/FDZ5fr2QkP)
11 
12**Connect MCP clients directly to a live Godot editor** via the [Model Context Protocol](https://modelcontextprotocol.io/introduction). Over **120 ops across ~43 MCP tools** ([full list](docs/TOOLS.md)) let AI assistants (Claude Code, Codex, **Grok Build**, Antigravity, Hermes Agent, etc.) build scenes, edit nodes and scripts, wire signals, and configure UI, materials, animations, particles, cameras, and environments.
13 
14> 🎉 **Now on the [Godot Asset Library](https://godotengine.org/asset-library/asset/5050) and the [new Godot Asset Store](https://store.godotengine.org/asset/dlight/godot-ai/)** — one-click install from Godot's **AssetLib** tab. You'll still need [uv](https://docs.astral.sh/uv/) for the Python server (see [Quick Start](#quick-start)).
15 
16<img src="docs/images/assetlib.png" alt="Godot AI on the Godot Asset Library" width="312">
17 
18> 💬 **[Join the Discord](https://discord.gg/FDZ5fr2QkP)** — questions, showcases, and contributor chat.
19 
20---
21 
22<p align="center">
23 <img src="docs/images/huddemo.gif" alt="Cyberpunk HUD demo" width="800"><br>
24 <em>UI demo built in ~2 hours with zero coding, zero image gen, all programmatically drawn by Godot AI — <a href="https://github.com/hi-godot/cyberpunk-hud-demo">source</a></em>
25</p>
26 
27---
28 
29## Quick Start
30 
31### Prerequisites
32 
33- Godot `4.5+` (`4.7+` recommended)
34- [uv](https://docs.astral.sh/uv/) (for the Python server)
35 
36 <details>
37 <summary>How to install uv (macOS / Linux / Windows / package managers)</summary>
38 
39 - **macOS / Linux:** `curl -LsSf https://astral.sh/uv/install.sh | sh`
40 - **Windows (PowerShell):** `powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"`
41 - **Prefer your package manager?** `uv` is a popular open-source tool packaged in
42 most distro repos, so you don't have to pipe a script from the web:
43 - **Arch:** `sudo pacman -S uv`
44 - **Debian / Ubuntu:** `sudo apt install uv` (older releases: `pipx install uv` or the script above)
45 - **Fedora:** `sudo dnf install uv`
46 - **macOS (Homebrew):** `brew install uv`
47 - Other options: [uv install docs](https://docs.astral.sh/uv/getting-started/installation/)
48 
49 </details>
50- An MCP client ([Claude Code](https://docs.anthropic.com/en/docs/claude-code) | [Codex](https://openai.com/index/codex/) | [Antigravity](https://www.antigravity.dev/))
51 
52### 1. Install the plugin
53 
54**Recommended — install from source** (always the latest):
55 
56```bash
57git clone https://github.com/hi-godot/godot-ai.git
58cp -r godot-ai/plugin/addons/godot_ai your-project/addons/
59```
60 
61Or [download the latest release ZIP](https://github.com/hi-godot/godot-ai/releases/latest) and extract `addons/godot_ai` into your project's `addons/` folder.
62 
63<details>
64<summary>Or via the Godot Asset Library</summary>
65 
66In Godot, open the **AssetLib** tab, search for **Godot AI**, click **Download**, then **Install**. Note: Asset Library updates lag behind GitHub, so this version may not be the most recent.
67 
68> 🚨 **If installing from the Asset Library**, most issues can be resolved by disabling and re-enabling the plugin in **Project > Project Settings > Plugins**.
69 
70</details>
71 
72### 2. Enable the plugin
73 
74In Godot: **Project > Project Settings > Plugins** — enable **Godot AI**.
75 
76The plugin will automatically start the MCP server, connect over WebSocket, and show status in the **Godot AI

Preview

hi-godot/godot-aihi-godot/godot-ai
Repohi-godot/godot-ai
TypeMCP Servers
CategoryAI Agents & MCP
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

MCPaigame-development

Related

6 picks
Type
  1. langchain-ai avatarlangchain-mcp-adaptersMake Anthropic Model Context Protocol (MCP) tools compatible with LangChain and LangGraph agents.MCP ServersJul 20267.0M3.6k
  2. openclaw avatarmcporterTypeScript runtime and CLI for connecting to configured Model Context Protocol servers.MCP ServersJul 20262.5M4.8k
  3. sparfenyuk avatarmcp-proxyA MCP server which proxies requests to a remote MCP server over streamable HTTP or SSE.MCP ServersJul 20262.2M2.7k
  4. sooperset avatarmcp-atlassianThe Model Context Protocol (MCP) Atlassian integration is an open-source implementation that bridges Atlassian products (Jira and Confluence) with AI language models following Anthropic's MCP specification.MCP ServersJul 20261.7M5.6k
  5. open-webui avataropen-webuiOpen WebUIMCP ServersJul 20261.4M147k
  6. dyoshikawa avatarrulesyncUnified AI rules management CLI tool that generates configuration files for various AI development toolsMCP ServersJul 2026889k1.3k