Content
# Godot Docs MCP Server 
A [Model Context Protocol](https://modelcontextprotocol.io) (MCP) server that provides AI assistants with access to [Godot](https://godotengine.org) 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_PATH` environment variable must be configured
## MCP configuration
Add this server to your `.mcp.json`:
```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](LICENSE) file for details.