G
Godot .net MCP
by @LuoxuanLove
Godot .NET MCP editor plugin for Godot 4 projects
Created 3/9/2026
Updated about 10 hours ago
README
Repository documentation and setup instructions
Godot .NET MCP
Godot .NET MCP 是一个运行在 Godot 编辑器内的 MCP 插件,面向 Godot 4 与 Godot.NET 工作流,提供稳定、可组合、可验证的工具调用入口。
文档入口
使用位置
该仓库应位于 Godot 项目的以下路径:
addons/godot_dotnet_mcp
启用方式:
- 用 Godot 打开项目。
- 进入
Project Settings > Plugins。 - 启用
Godot .NET MCP。
作为 Git Submodule 使用
git submodule add https://github.com/LuoxuanLove/Godot-.NET-MCP.git addons/godot_dotnet_mcp
git submodule update --init --recursive
如果是首次克隆包含该插件的主项目:
git clone --recurse-submodules <your-project-repo>
仓库结构
plugin.cfg:Godot 插件清单plugin.gd:编辑器插件入口mcp_server.gd:MCP 服务实现tools/:按能力域划分的工具执行器ui/:Dock 与设置界面i18n/:本地化资源docs/:中文文档
Quick Setup
Installation guide for this server
Installation Command (package not published)
git clone https://github.com/LuoxuanLove/Godot-.NET-MCP
Manual Installation: Please check the README for detailed setup instructions and any additional dependencies required.
Cursor configuration (mcp.json)
{
"mcpServers": {
"luoxuanlove-godot-net-mcp": {
"command": "git",
"args": [
"clone",
"https://github.com/LuoxuanLove/Godot-.NET-MCP"
]
}
}
}