Borrowing it
Nothing to install: this file belongs to hhhh124hhhh/godot-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/hhhh124hhhh/godot-mcp/main/.claude/skills/godot-skills/sub-skills/godot-mcp-auto-launcher/SKILL.mdgit clone --depth 1 https://github.com/hhhh124hhhh/godot-mcpWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/hhhh124hhhh/godot-mcp/godot-mcp-auto-launcher)<a href="https://agentmods.dev/skills/hhhh124hhhh/godot-mcp/godot-mcp-auto-launcher"><img src="https://agentmods.dev/badge/skills/hhhh124hhhh/godot-mcp/godot-mcp-auto-launcher/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/hhhh124hhhh/godot-mcp/godot-mcp-auto-launcher"><img src="https://agentmods.dev/badge/skills/hhhh124hhhh/godot-mcp/godot-mcp-auto-launcher.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00052 | $0.01354 |
| Opus 5 | $0.00026 | $0.00677 |
| Sonnet 5 | $0.00010 | $0.00271 |
| Haiku 4.5 | $0.00005 | $0.00135 |
Grade A, and why
godot-mcp-auto-launcher scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -s http://localhost:9080 > /dev/null How it starts
The opening of the file, as written. The whole thing — 181 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Godot MCP 自动启动器
技能目标
本技能负责自动检测和启动Godot MCP服务器,确保AI助手能够通过MCP工具与Godot编辑器通信。该技能提供完整的自动化流程,无需人工干预即可建立MCP连接。
使用场景
在以下情况中使用此技能:
- Godot项目启动时 - 确保MCP服务器随Godot编辑器一起启动
- MCP连接不可用 - 检测到MCP工具无法连接时自动启动服务器
- 开发环境初始化 - 设置新的Godot+MCP开发环境
- MCP服务器意外关闭 - 自动重启意外终止的MCP服务器
操作流程
1. 检查MCP连接状态
首先检查MCP Node.js客户端是否已经连接到Godot:
# 使用Node.js脚本检查状态
node /mnt/d/godot-mcp/.claude/skills/godot-mcp-auto-launcher/scripts/start-mcp.js status
# 或者直接检查端口
lsof -i :9080 # 查看Godot是否在监听9080端口
2. 启动MCP客户端
如果MCP客户端未运行,使用以下命令启动:
# 使用Node.js启动脚本(推荐)
node /mnt/d/godot-mcp/.claude/skills/godot-mcp-auto-launcher/scripts/start-mcp.js start
注意: 启动前请确保Godot编辑器已打开且MCP插件已启用。
启动脚本会自动:
- 检查MCP客户端是否已在运行
- 构建MCP服务器(如果需要)
- 启动MCP Node.js客户端
- 保存进程PID以便后续管理
MCP客户端会自动尝试连接到Godot WebSocket服务器(端口9080)。
3. 验证连接
启动后验证MCP连接是否正常:
# 检查状态
node /mnt/d/godot-mcp/.claude/skills/godot-mcp-auto-launcher/scripts/start-mcp.js status
# 查看日志
tail -f /tmp/mcp_launcher.log
4. 管理MCP客户端
停止MCP客户端:
node /mnt/d/godot-mcp/.claude/skills/godot-mcp-auto-launcher/scripts/start-mcp.js stop
重启MCP客户端:
node /mnt/d/godot-mcp/.claude/skills/godot-mcp-auto-launcher/scripts/start-mcp.js restart
显示帮助信息:
node /mnt/d/godot-mcp/.claude/skills/godot-mcp-auto-launcher/scripts/start-mcp.js --help
重要规则
⚠️ 禁止直接操作Godot文件
绝对禁止直接读取、写入或修改Godot项目文件(.tscn, .gd, .tres等)。所有与Godot文件的交互必须通过MCP工具完成。
✅ 正确做法:使用MCP工具
- 使用
create_node创建节点 - 使用
update_node_property修改节点属性 - 使用
create_script创建脚本 - 使用
get_script读取脚本内容
❌ 错误做法:直接操作文件
- 不要使用Read工具读取.tscn文件
- 不要使用Edit工具修改.gd文件
- 不要使用Write工具创建Godot资源文件
自动化启动的最佳实践
- 错误处理:启动失败时提供清晰的错误信息
- 日志记录:记录启动过程中的所有关键步骤
- 状态检查:在启动前后都进行状态验证
- 优雅关闭:提供关闭服务器的机制
故障排除
问题:端口已被占用
如果端口9080已被其他应用占用:
# 查找占用端口的进程
lsof -i :9080
# 如果是Godot MCP的旧实例,先终止它
kill -9 <PID>
# 然后重新启动
npm run dev
问题:MCP工具连接失败
如果MCP工具无法连接到服务器:
- 检查防火墙设置,确保端口9080未被阻止
- 确认MCP服务器日志中没有错误
- 检查Godot插件配置,确认WebSocket地址正确
- 尝试重启Godot编辑器
What ships with it
2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 12d ago First seen · 181 lines · 52 tokens per session scan A 612afbdacd3c
godot-mcp-auto-launcher is a skill published in the GitHub repository hhhh124hhhh/godot-mcp (42 stars, last pushed 10mo ago), licensed MIT. It adds 52 tokens to every session and 1,354 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
gameobject-component-destroy
Destroy one or more Components from a target GameObject. Missing (null) components are skipped — they cannot be destroyed. Use 'gameobject-find' and 'gameobject-component-get' to identify the components first.
unity-version-split
Split a C# file into Unity 6.5+ and pre-Unity 6.5 variants. Use when a file needs different implementations for different Unity versions due to API changes (e.g., EntityId vs int, GetEntityId vs GetInstanceID).
godot-signals-groups
Build event-driven, decoupled Godot 4.7 gameplay with signals and node groups: declare and emit custom signals, connect with Callables (incl. bind/one-shot), and broadcast to many nodes via groups and callgroup. Use when wiring node communication in a Godot project, replacing tight references with signals…
motion
How an agent turns a character mesh into a usable animated FBX — and how to judge whether the result is shippable.
unity-addressables
Manage Addressables groups, entries, profiles and content builds (com.unity.addressables, reflection-based).
threejs-exposure-color-grading
Build a measured exposure and grading path in Three.js. Use for a 64x36 encoded luminance meter, asynchronous readback, weighted log-average exposure, asymmetric adaptation, single tone-map ownership, and a generated 32-cube post-tone-map LUT.