@fernforestgames/mcp-server-godot-docs
v0.1.1
Published
MCP server to help agents search Godot engine documentation
Maintainers
Readme
Godot Docs MCP Server 
A Model Context Protocol (MCP) server that provides AI assistants with access to Godot engine documentation.
Features
- search_godot_docs: Search across all Godot classes, methods, properties, signals, and constants
- get_godot_class: Get complete documentation for a specific class including all members
Documentation is automatically downloaded and cached on first use, matching your installed Godot version.
Prerequisites
- Node 22+
- Godot must be installed and accessible
GODOT_PATHenvironment variable must be configured
MCP configuration
Add this server to your .mcp.json:
{
"mcpServers": {
"godot-docs": {
"type": "stdio",
"command": "npx",
"args": ["@fernforestgames/mcp-server-godot-docs"],
"env": {
"GODOT_PATH": "/path/to/godot/executable"
}
}
}
}License
Released under the MIT License. See the LICENSE file for details.
