Raw scan report

Godot — the complete, unedited output of the deterministic mcptrustchecker engine v1.13.0, scanned . Every finding, capability tag and score component below is exactly what the engine produced — no AI, no post-processing.

← Back to the scan page
{
  "tool": {
    "name": "mcptrustchecker",
    "version": "1.13.0",
    "methodologyVersion": "mcptrustchecker-1.13"
  },
  "target": {
    "id": "@tugcantopaloglu/godot-mcp",
    "source": {
      "kind": "package",
      "origin": "@tugcantopaloglu/godot-mcp"
    },
    "server": {
      "name": "@tugcantopaloglu/godot-mcp"
    }
  },
  "grade": "B",
  "score": {
    "score": 89,
    "threatScore": 100,
    "grade": "B",
    "band": "B",
    "categorySubtotals": {
      "injection": 0,
      "exfiltration": 0,
      "permissions": 0,
      "supply-chain": 0,
      "network": 0,
      "hygiene": 0
    },
    "vector": [
      {
        "kind": "client",
        "term": "capability-exposure",
        "level": "critical",
        "label": "capability blast radius (critical) — client exposure if the model is manipulated",
        "appliedPenalty": 10
      },
      {
        "kind": "client",
        "term": "verification-discount",
        "level": "repo",
        "label": "publisher verification (public source) — no provenance, but the source is public and inspectable",
        "appliedPenalty": 1
      },
      {
        "kind": "client",
        "term": "coverage-honesty",
        "level": "source",
        "label": "inspection depth (source) — how much of the target the scan could see",
        "appliedPenalty": 0
      }
    ],
    "gatesFired": [],
    "methodologyVersion": "mcptrustchecker-1.13"
  },
  "capability": {
    "level": "critical",
    "reasons": [
      "ingests untrusted external content (a prompt-injection entry point)",
      "can send data / act on an external service",
      "can create, modify or delete files",
      "reads sensitive or local data",
      "has a read → egress path (a data-exfiltration surface)",
      "can execute shell commands or code",
      "untrusted-input, sensitive-source and egress co-exist across tools (toxic-flow surface)",
      "untrusted input can reach code execution"
    ],
    "tags": [
      "code-exec",
      "untrusted-input",
      "sensitive-source",
      "file-write",
      "external-sink"
    ]
  },
  "coverage": {
    "level": "source",
    "inputs": {
      "toolSurface": true,
      "implementationSource": true,
      "packageMetadata": true,
      "liveTransport": false
    },
    "caveats": [
      "Tools were statically extracted from the published source (154 recovered), not enumerated from a running server. Tool-poisoning, Unicode-smuggling, capability and toxic-flow analysis ran on this inferred surface, but a mis-parsed registration could be missed or mis-attributed, so tool-derived findings are capped below “confirmed”. To grade the real runtime surface, scan the running server: --command \"npx -y <package>\"."
    ]
  },
  "findings": [
    {
      "ruleId": "MTC-FLOW-002",
      "title": "Completed toxic-flow trifecta across tools",
      "category": "exfiltration",
      "severity": "critical",
      "confidence": "strong",
      "description": "This server (without client built-ins) exposes a complete data-exfiltration chain: read_project_settings → game_get_logs → game_eval. Untrusted input is ingested, private data is read, and it can be sent to an external sink via the agent composing the tools (→). Static analysis proves the primitive exists, not that a specific run will occur.",
      "remediation": "Remove one leg of the trifecta: isolate untrusted-input tools from secret-reading tools and from egress tools, or require human approval between them.",
      "location": {
        "kind": "flow",
        "name": "read_project_settings → game_get_logs → game_eval"
      },
      "owasp": "LLM02:2025 Sensitive Information Disclosure",
      "references": [],
      "data": {
        "untrusted": [
          "read_project_settings"
        ],
        "sources": [
          "read_file",
          "game_get_logs"
        ],
        "sinks": [
          "game_eval",
          "game_spawn_node",
          "game_http_request",
          "game_websocket"
        ],
        "path": [
          "read_project_settings",
          "game_get_logs",
          "game_eval"
        ],
        "edges": [
          {
            "from": "read_project_settings",
            "to": "game_get_logs",
            "kind": "agent-mediated"
          },
          {
            "from": "game_get_logs",
            "to": "game_eval",
            "kind": "agent-mediated"
          }
        ],
        "wired": false
      }
    },
    {
      "ruleId": "MTC-CAP-001",
      "title": "Tool \"game_eval\" exposes command/code execution",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "Tool \"game_eval\" appears to run shell commands or evaluate code (keyword \"eval\" in tool name). Arbitrary execution driven by model input is one of the most dangerous MCP capabilities; combined with any untrusted input it becomes RCE.",
      "remediation": "Sandbox execution, allowlist commands/arguments, and never pass model output to a shell unescaped.",
      "location": {
        "kind": "tool",
        "name": "game_eval"
      },
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "tags": [
          "code-exec"
        ]
      }
    },
    {
      "ruleId": "MTC-CAP-001",
      "title": "Tool \"game_spawn_node\" exposes command/code execution",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "Tool \"game_spawn_node\" appears to run shell commands or evaluate code (keyword \"spawn\" in tool name). Arbitrary execution driven by model input is one of the most dangerous MCP capabilities; combined with any untrusted input it becomes RCE.",
      "remediation": "Sandbox execution, allowlist commands/arguments, and never pass model output to a shell unescaped.",
      "location": {
        "kind": "tool",
        "name": "game_spawn_node"
      },
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "tags": [
          "code-exec"
        ]
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (build/index.js)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`build/index.js:12`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.",
      "remediation": "Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.",
      "location": {
        "kind": "server",
        "name": "build/index.js"
      },
      "evidence": "spawn, execFile } from 'child_process'; import { promisify } from 'util'; import { createConnection } from 'net'; import",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "build/index.js",
        "line": 12,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-CAP-007",
      "title": "Unconstrained URL/host parameter \"url\" on \"game_http_request\"",
      "category": "network",
      "severity": "medium",
      "confidence": "heuristic",
      "description": "Tool \"game_http_request\" takes a URL/host parameter \"url\" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).",
      "remediation": "Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.",
      "location": {
        "kind": "tool",
        "name": "game_http_request",
        "field": "inputSchema.properties.url"
      },
      "owasp": "LLM06:2025 Excessive Agency",
      "data": {
        "param": "url"
      }
    },
    {
      "ruleId": "MTC-CAP-007",
      "title": "Unconstrained URL/host parameter \"url\" on \"game_websocket\"",
      "category": "network",
      "severity": "medium",
      "confidence": "heuristic",
      "description": "Tool \"game_websocket\" takes a URL/host parameter \"url\" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).",
      "remediation": "Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.",
      "location": {
        "kind": "tool",
        "name": "game_websocket",
        "field": "inputSchema.properties.url"
      },
      "owasp": "LLM06:2025 Excessive Agency",
      "data": {
        "param": "url"
      }
    },
    {
      "ruleId": "MTC-CAP-002",
      "title": "Tool \"write_file\" can modify the filesystem",
      "category": "permissions",
      "severity": "medium",
      "confidence": "strong",
      "description": "Tool \"write_file\" can write, overwrite or delete files (keyword \"write_file\" in tool name). Verify it is scoped to a safe directory.",
      "remediation": "Constrain file operations to an explicit, non-sensitive root; reject path traversal.",
      "location": {
        "kind": "tool",
        "name": "write_file"
      },
      "data": {
        "tags": [
          "file-write"
        ]
      }
    },
    {
      "ruleId": "MTC-CAP-002",
      "title": "Tool \"delete_file\" can modify the filesystem",
      "category": "permissions",
      "severity": "medium",
      "confidence": "strong",
      "description": "Tool \"delete_file\" can write, overwrite or delete files (keyword \"delete_file\" in tool name). Verify it is scoped to a safe directory.",
      "remediation": "Constrain file operations to an explicit, non-sensitive root; reject path traversal.",
      "location": {
        "kind": "tool",
        "name": "delete_file"
      },
      "data": {
        "tags": [
          "file-write"
        ]
      }
    },
    {
      "ruleId": "MTC-CAP-006",
      "title": "Unconstrained command parameter \"code\" on \"game_eval\"",
      "category": "permissions",
      "severity": "medium",
      "confidence": "heuristic",
      "description": "Tool \"game_eval\" takes a command-shaped parameter \"code\" with no enum/pattern constraint. Free-form, model- or attacker-controlled arguments reaching a shell is the command-injection precondition.",
      "remediation": "Constrain the parameter (enum/pattern), or build the command from a fixed template with escaped args.",
      "location": {
        "kind": "tool",
        "name": "game_eval",
        "field": "inputSchema.properties.code"
      },
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "param": "code"
      }
    },
    {
      "ruleId": "MTC-CAP-005",
      "title": "Mutating tool \"game_eval\" declares no destructiveHint",
      "category": "hygiene",
      "severity": "low",
      "confidence": "heuristic",
      "description": "Tool \"game_eval\" can mutate/egress but declares no destructiveHint. Clients that don't default to spec-safe behavior may not prompt before running it.",
      "remediation": "Declare accurate annotations, and gate destructive tools on user confirmation regardless.",
      "location": {
        "kind": "tool",
        "name": "game_eval"
      },
      "data": {
        "tags": [
          "code-exec"
        ]
      }
    },
    {
      "ruleId": "MTC-CAP-005",
      "title": "Mutating tool \"write_file\" declares no destructiveHint",
      "category": "hygiene",
      "severity": "low",
      "confidence": "heuristic",
      "description": "Tool \"write_file\" can mutate/egress but declares no destructiveHint. Clients that don't default to spec-safe behavior may not prompt before running it.",
      "remediation": "Declare accurate annotations, and gate destructive tools on user confirmation regardless.",
      "location": {
        "kind": "tool",
        "name": "write_file"
      },
      "data": {
        "tags": [
          "file-write"
        ]
      }
    },
    {
      "ruleId": "MTC-CAP-005",
      "title": "Mutating tool \"delete_file\" declares no destructiveHint",
      "category": "hygiene",
      "severity": "low",
      "confidence": "heuristic",
      "description": "Tool \"delete_file\" can mutate/egress but declares no destructiveHint. Clients that don't default to spec-safe behavior may not prompt before running it.",
      "remediation": "Declare accurate annotations, and gate destructive tools on user confirmation regardless.",
      "location": {
        "kind": "tool",
        "name": "delete_file"
      },
      "data": {
        "tags": [
          "file-write"
        ]
      }
    },
    {
      "ruleId": "MTC-CAP-005",
      "title": "Mutating tool \"game_spawn_node\" declares no destructiveHint",
      "category": "hygiene",
      "severity": "low",
      "confidence": "heuristic",
      "description": "Tool \"game_spawn_node\" can mutate/egress but declares no destructiveHint. Clients that don't default to spec-safe behavior may not prompt before running it.",
      "remediation": "Declare accurate annotations, and gate destructive tools on user confirmation regardless.",
      "location": {
        "kind": "tool",
        "name": "game_spawn_node"
      },
      "data": {
        "tags": [
          "code-exec"
        ]
      }
    },
    {
      "ruleId": "MTC-CAP-008",
      "title": "Unconstrained path parameter \"filePath\" on \"read_file\"",
      "category": "permissions",
      "severity": "low",
      "confidence": "heuristic",
      "description": "Tool \"read_file\" takes a path parameter \"filePath\" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.",
      "remediation": "Resolve and verify the path stays within an allowed root; reject traversal sequences.",
      "location": {
        "kind": "tool",
        "name": "read_file",
        "field": "inputSchema.properties.filePath"
      },
      "data": {
        "param": "filePath"
      }
    },
    {
      "ruleId": "MTC-CAP-008",
      "title": "Unconstrained path parameter \"filePath\" on \"write_file\"",
      "category": "permissions",
      "severity": "low",
      "confidence": "heuristic",
      "description": "Tool \"write_file\" takes a path parameter \"filePath\" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.",
      "remediation": "Resolve and verify the path stays within an allowed root; reject traversal sequences.",
      "location": {
        "kind": "tool",
        "name": "write_file",
        "field": "inputSchema.properties.filePath"
      },
      "data": {
        "param": "filePath"
      }
    },
    {
      "ruleId": "MTC-CAP-008",
      "title": "Unconstrained path parameter \"filePath\" on \"delete_file\"",
      "category": "permissions",
      "severity": "low",
      "confidence": "heuristic",
      "description": "Tool \"delete_file\" takes a path parameter \"filePath\" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.",
      "remediation": "Resolve and verify the path stays within an allowed root; reject traversal sequences.",
      "location": {
        "kind": "tool",
        "name": "delete_file",
        "field": "inputSchema.properties.filePath"
      },
      "data": {
        "param": "filePath"
      }
    }
  ],
  "toxicFlows": [
    {
      "id": "flow-1",
      "severity": "critical",
      "confidence": "strong",
      "untrustedInput": [
        "read_project_settings"
      ],
      "sensitiveSource": [
        "read_file",
        "game_get_logs"
      ],
      "externalSink": [
        "game_eval",
        "game_spawn_node",
        "game_http_request",
        "game_websocket"
      ],
      "selfContained": false,
      "path": [
        "read_project_settings",
        "game_get_logs",
        "game_eval"
      ],
      "pathWired": false,
      "description": "A cross-tool exfiltration chain exists: read_project_settings → game_get_logs → game_eval."
    }
  ],
  "capabilities": [
    {
      "tool": "launch_editor",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "run_project",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_debug_output",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "stop_project",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_godot_version",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_projects",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_project_info",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "create_scene",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "add_node",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "load_sprite",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "export_mesh_library",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "save_scene",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_uid",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "update_project_uids",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_screenshot",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_click",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_key_press",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_mouse_move",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_get_ui",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_get_scene_tree",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_eval",
      "tags": [
        "code-exec"
      ],
      "reasons": {
        "code-exec": [
          "keyword \"eval\" in tool name"
        ]
      }
    },
    {
      "tool": "game_get_property",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_set_property",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_call_method",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_get_node_info",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_instantiate_scene",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_remove_node",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_change_scene",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_pause",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_performance",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_wait",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "read_scene",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "modify_scene_node",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "remove_scene_node",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "read_project_settings",
      "tags": [
        "untrusted-input"
      ],
      "reasons": {
        "untrusted-input": [
          "keyword \"read_pr\""
        ]
      }
    },
    {
      "tool": "modify_project_settings",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_project_files",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_connect_signal",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_disconnect_signal",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_emit_signal",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_play_animation",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_tween_property",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_get_nodes_in_group",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_find_nodes_by_class",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_reparent_node",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "attach_script",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "create_resource",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "read_file",
      "tags": [
        "sensitive-source"
      ],
      "reasons": {
        "sensitive-source": [
          "keyword \"read_file\""
        ]
      }
    },
    {
      "tool": "write_file",
      "tags": [
        "file-write"
      ],
      "reasons": {
        "file-write": [
          "keyword \"write_file\" in tool name"
        ]
      }
    },
    {
      "tool": "delete_file",
      "tags": [
        "file-write"
      ],
      "reasons": {
        "file-write": [
          "keyword \"delete_file\" in tool name"
        ]
      }
    },
    {
      "tool": "create_directory",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_get_errors",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_get_logs",
      "tags": [
        "sensitive-source"
      ],
      "reasons": {
        "sensitive-source": [
          "keyword \"get_logs\""
        ]
      }
    },
    {
      "tool": "game_key_hold",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_key_release",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_scroll",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_mouse_drag",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_gamepad",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "create_project",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "manage_autoloads",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "manage_input_map",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "manage_export_presets",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_get_camera",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_set_camera",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_raycast",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_get_audio",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_spawn_node",
      "tags": [
        "code-exec"
      ],
      "reasons": {
        "code-exec": [
          "keyword \"spawn\" in tool name"
        ]
      }
    },
    {
      "tool": "game_set_shader_param",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_audio_play",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_audio_bus",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_navigate_path",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_tilemap",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_add_collision",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_environment",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_manage_group",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_create_timer",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_set_particles",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_create_animation",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "export_project",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_serialize_state",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_physics_body",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_create_joint",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_bone_pose",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_ui_theme",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_viewport",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_debug_draw",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_http_request",
      "tags": [
        "external-sink"
      ],
      "reasons": {
        "external-sink": [
          "keyword \"http_request\""
        ]
      }
    },
    {
      "tool": "game_websocket",
      "tags": [
        "external-sink"
      ],
      "reasons": {
        "external-sink": [
          "keyword \"send_message\""
        ]
      }
    },
    {
      "tool": "game_multiplayer",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_rpc",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_touch",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_input_state",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_input_action",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_list_signals",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_await_signal",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_script",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_window",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_os_info",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_time_scale",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_process_mode",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_world_settings",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_csg",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_multimesh",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_procedural_mesh",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_light_3d",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_mesh_instance",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_gridmap",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_3d_effects",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_gi",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_path_3d",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_sky",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_camera_attributes",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_navigation_3d",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_physics_3d",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_canvas",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_canvas_draw",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_light_2d",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_parallax",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_shape_2d",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_path_2d",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_physics_2d",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_animation_tree",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_animation_control",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_skeleton_ik",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_audio_effect",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_audio_bus_layout",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_audio_spatial",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "rename_file",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "manage_resource",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "create_script",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "manage_scene_signals",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "manage_layers",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "manage_plugins",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "manage_shader",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "manage_theme_resource",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "set_main_scene",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "manage_scene_structure",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "manage_translations",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_locale",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_ui_control",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_ui_text",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_ui_popup",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_ui_tree",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_ui_item_list",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_ui_tabs",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_ui_menu",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_ui_range",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_render_settings",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_resource",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_visual_shader",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_terrain",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "game_video",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "manage_ci_pipeline",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "manage_docker_export",
      "tags": [],
      "reasons": {}
    }
  ],
  "surfaceDigest": "c0b529b56d078a385209e6a4b3807def35e686071d8e3a64056addb723b7346d",
  "stats": {
    "tools": 154,
    "prompts": 0,
    "resources": 0,
    "findingsBySeverity": {
      "critical": 1,
      "high": 3,
      "medium": 5,
      "low": 7,
      "info": 0
    }
  }
}