Godot Docs Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Godot Docs Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A Model Context Protocol (MCP) server that provides queryable access to Godot Engine documentation.
cd C:\GodotProjects\godot-docs-mcp
pip install -e .python scripts/build_index.py C:\GodotProjects\godot-docsThis will parse all RST files and create data/godot_docs.db.
Add to your OpenCode configuration:
{
"mcpServers": {
"godot-docs": {
"command": "python",
"args": ["-m", "src.server"],
"cwd": "C:\\GodotProjects\\godot-docs-mcp"
}
}
}search_class - Search for classes by name or descriptionget_class_docs - Get full documentation for a classget_method_docs - Get documentation for a specific methodsearch_methods - Search methods across all classeslist_class_members - List all members of a classget_inheritance_tree - Get inheritance hierarchysearch_by_return_type - Find methods by return typesearch_guides - Search tutorial documentation# Search for Node class
search_class(query="Node")
# Get all methods of Control class
list_class_members(class_name="Control", member_type="methods")
# Find methods that return Vector2
search_by_return_type(return_type="Vector2")
# Get inheritance tree for CanvasItem
get_inheritance_tree(class_name="CanvasItem", direction="both")MIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.