MCP Servers

模型上下文协议服务器、框架、SDK 和模板的综合目录。

MCP server for interacting with the Godot game engine and projects

创建于 9/27/2025
更新于 3 months ago
Repository documentation and setup instructions

Godot MCP server NPM Version

A Model Context Protocol (MCP) server that provides AI assistants with tools to interact with Godot projects. This server enables starting, stopping, and capturing output from Godot projects, as well as capturing screenshots for visual debugging and analysis.

Features

  • Tools: Run/stop Godot projects, search scenes by node type/name/properties, capture screenshots
  • Resources: Browse scenes and .tres files, query by resource type, monitor running projects with output streams

Prerequisites

  • Node 22+
  • Godot must be installed and accessible
  • GODOT_PATH environment variable must be configured

MCP configuration

Add this server to your .mcp.json:

{
  "mcpServers": {
    "godot": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "@fernforestgames/mcp-server-godot",
        "/path/to/your/godot/project"
      ],
      "env": {
        "GODOT_PATH": "/path/to/godot/executable"
      }
    }
  }
}

License

Released under the MIT License. See the LICENSE file for details.

快速设置
此服务器的安装指南

安装包 (如果需要)

npx @modelcontextprotocol/server-mcp-server-godot

Cursor 配置 (mcp.json)

{ "mcpServers": { "fernforestgames-mcp-server-godot": { "command": "npx", "args": [ "fernforestgames-mcp-server-godot" ] } } }