MCP Servers

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

Godot .NET MCP editor plugin for Godot 4 projects

Created 3/9/2026
Updated about 10 hours ago
Repository documentation and setup instructions

Godot .NET MCP

Godot .NET MCP 是一个运行在 Godot 编辑器内的 MCP 插件,面向 Godot 4 与 Godot.NET 工作流,提供稳定、可组合、可验证的工具调用入口。

文档入口

使用位置

该仓库应位于 Godot 项目的以下路径:

addons/godot_dotnet_mcp

启用方式:

  1. 用 Godot 打开项目。
  2. 进入 Project Settings > Plugins
  3. 启用 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" ] } } }