Raw scan report

Unreal Engine — 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": "unreal-engine-mcp",
    "source": {
      "kind": "package",
      "origin": "unreal-engine-mcp"
    },
    "server": {
      "name": "unreal-engine-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)",
      "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": [
      "untrusted-input",
      "code-exec",
      "sensitive-source"
    ]
  },
  "coverage": {
    "level": "source",
    "inputs": {
      "toolSurface": true,
      "implementationSource": true,
      "packageMetadata": true,
      "liveTransport": false
    },
    "caveats": [
      "Tools were statically extracted from the published source (163 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: preset_download_ambientcg → ue_bt_info → ue_exec_python. 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": "preset_download_ambientcg → ue_bt_info → ue_exec_python"
      },
      "owasp": "LLM02:2025 Sensitive Information Disclosure",
      "references": [],
      "data": {
        "untrusted": [
          "preset_download_url",
          "preset_download_polyhaven",
          "preset_download_ambientcg",
          "preset_download_kenney",
          "preset_fab_download"
        ],
        "sources": [
          "ue_bt_info"
        ],
        "sinks": [
          "ue_exec_python",
          "ue_spawn_actor",
          "ue_spawn_many",
          "ue_pcg_spawn_volume",
          "ue_foliage_spawn_volume"
        ],
        "path": [
          "preset_download_ambientcg",
          "ue_bt_info",
          "ue_exec_python"
        ],
        "edges": [
          {
            "from": "preset_download_ambientcg",
            "to": "ue_bt_info",
            "kind": "agent-mediated"
          },
          {
            "from": "ue_bt_info",
            "to": "ue_exec_python",
            "kind": "agent-mediated"
          }
        ],
        "wired": false
      }
    },
    {
      "ruleId": "MTC-CAP-001",
      "title": "Tool \"ue_exec_python\" exposes command/code execution",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "Tool \"ue_exec_python\" appears to run shell commands or evaluate code (keyword \"exec\" 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": "ue_exec_python"
      },
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "tags": [
          "code-exec"
        ]
      }
    },
    {
      "ruleId": "MTC-CAP-001",
      "title": "Tool \"ue_spawn_actor\" exposes command/code execution",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "Tool \"ue_spawn_actor\" 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": "ue_spawn_actor"
      },
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "tags": [
          "code-exec"
        ]
      }
    },
    {
      "ruleId": "MTC-CAP-001",
      "title": "Tool \"ue_spawn_many\" exposes command/code execution",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "Tool \"ue_spawn_many\" 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": "ue_spawn_many"
      },
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "tags": [
          "code-exec"
        ]
      }
    },
    {
      "ruleId": "MTC-CAP-001",
      "title": "Tool \"ue_pcg_spawn_volume\" exposes command/code execution",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "Tool \"ue_pcg_spawn_volume\" 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": "ue_pcg_spawn_volume"
      },
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "tags": [
          "code-exec"
        ]
      }
    },
    {
      "ruleId": "MTC-CAP-001",
      "title": "Tool \"ue_foliage_spawn_volume\" exposes command/code execution",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "Tool \"ue_foliage_spawn_volume\" 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": "ue_foliage_spawn_volume"
      },
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "tags": [
          "code-exec"
        ]
      }
    },
    {
      "ruleId": "MTC-SRC-001",
      "title": "Dynamic code execution in server code (src/unreal_mcp/bridge.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`src/unreal_mcp/bridge.py:136`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. 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": "src/unreal_mcp/bridge.py"
      },
      "evidence": "ype({HELPERS_MODULE!r}) exec(compile({source!r}, \"<unreal-mcp-helpers>\", \"exec\"), _mcp_module.__dict__) _mcp_module.MCP_",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-001",
        "file": "src/unreal_mcp/bridge.py",
        "line": 136,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (src/unreal_mcp/assets.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`src/unreal_mcp/assets.py:397`): 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": "src/unreal_mcp/assets.py"
      },
      "evidence": ") result = subprocess.run( # noqa: S603 [executable, *args], capture_output=True, text=True, timeo",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "src/unreal_mcp/assets.py",
        "line": 397,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (src/unreal_mcp/bridge.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`src/unreal_mcp/bridge.py:136`): 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": "src/unreal_mcp/bridge.py"
      },
      "evidence": "ype({HELPERS_MODULE!r}) exec(compile({source!r}, \"<unreal-mcp-helpers>\", \"exec\"), _mcp_module.__dict__) _mcp_module.MCP_",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "src/unreal_mcp/bridge.py",
        "line": 136,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (src/unreal_mcp/local.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`src/unreal_mcp/local.py:1302`): 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": "src/unreal_mcp/local.py"
      },
      "evidence": "_PROCESS process = subprocess.Popen(args, **kwargs) # noqa: S603 state = { \"pid\": process.pid,",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "src/unreal_mcp/local.py",
        "line": 1302,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-CAP-005",
      "title": "Mutating tool \"ue_exec_python\" declares no destructiveHint",
      "category": "hygiene",
      "severity": "low",
      "confidence": "heuristic",
      "description": "Tool \"ue_exec_python\" 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": "ue_exec_python"
      },
      "data": {
        "tags": [
          "code-exec"
        ]
      }
    },
    {
      "ruleId": "MTC-CAP-005",
      "title": "Mutating tool \"ue_spawn_actor\" declares no destructiveHint",
      "category": "hygiene",
      "severity": "low",
      "confidence": "heuristic",
      "description": "Tool \"ue_spawn_actor\" 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": "ue_spawn_actor"
      },
      "data": {
        "tags": [
          "code-exec"
        ]
      }
    },
    {
      "ruleId": "MTC-CAP-005",
      "title": "Mutating tool \"ue_spawn_many\" declares no destructiveHint",
      "category": "hygiene",
      "severity": "low",
      "confidence": "heuristic",
      "description": "Tool \"ue_spawn_many\" 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": "ue_spawn_many"
      },
      "data": {
        "tags": [
          "code-exec"
        ]
      }
    },
    {
      "ruleId": "MTC-CAP-005",
      "title": "Mutating tool \"ue_pcg_spawn_volume\" declares no destructiveHint",
      "category": "hygiene",
      "severity": "low",
      "confidence": "heuristic",
      "description": "Tool \"ue_pcg_spawn_volume\" 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": "ue_pcg_spawn_volume"
      },
      "data": {
        "tags": [
          "code-exec"
        ]
      }
    },
    {
      "ruleId": "MTC-CAP-005",
      "title": "Mutating tool \"ue_foliage_spawn_volume\" declares no destructiveHint",
      "category": "hygiene",
      "severity": "low",
      "confidence": "heuristic",
      "description": "Tool \"ue_foliage_spawn_volume\" 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": "ue_foliage_spawn_volume"
      },
      "data": {
        "tags": [
          "code-exec"
        ]
      }
    },
    {
      "ruleId": "MTC-SRC-001",
      "title": "Dynamic code execution in packaging/dev tooling (tests/fake_pyremote_node.py)",
      "category": "permissions",
      "severity": "low",
      "confidence": "heuristic",
      "description": "In a packaging/dev/install script (shipped, but not the server runtime) (`tests/fake_pyremote_node.py:158`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. 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": "tests/fake_pyremote_node.py"
      },
      "evidence": "uffer): exec(compile(codice, \"<unreal-mcp>\", \"exec\"), {\"__name__\": \"__mcp__\"}) ok = True",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-001",
        "file": "tests/fake_pyremote_node.py",
        "line": 158,
        "nonRuntime": true
      }
    },
    {
      "ruleId": "MTC-SRC-001",
      "title": "Dynamic code execution in packaging/dev tooling (tests/fake_server.py)",
      "category": "permissions",
      "severity": "low",
      "confidence": "heuristic",
      "description": "In a packaging/dev/install script (shipped, but not the server runtime) (`tests/fake_server.py:64`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. 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": "tests/fake_server.py"
      },
      "evidence": "exec(compile(code, \"<unreal-mcp>\", \"exec\"), {\"__name__\": \"__mcp__\"}) ok = Tr",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-001",
        "file": "tests/fake_server.py",
        "line": 64,
        "nonRuntime": true
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in packaging/dev tooling (tests/fake_pyremote_node.py)",
      "category": "permissions",
      "severity": "low",
      "confidence": "heuristic",
      "description": "In a packaging/dev/install script (shipped, but not the server runtime) (`tests/fake_pyremote_node.py:158`): 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": "tests/fake_pyremote_node.py"
      },
      "evidence": "uffer): exec(compile(codice, \"<unreal-mcp>\", \"exec\"), {\"__name__\": \"__mcp__\"}) ok = True",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "tests/fake_pyremote_node.py",
        "line": 158,
        "nonRuntime": true
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in packaging/dev tooling (tests/fake_server.py)",
      "category": "permissions",
      "severity": "low",
      "confidence": "heuristic",
      "description": "In a packaging/dev/install script (shipped, but not the server runtime) (`tests/fake_server.py:64`): 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": "tests/fake_server.py"
      },
      "evidence": "exec(compile(code, \"<unreal-mcp>\", \"exec\"), {\"__name__\": \"__mcp__\"}) ok = Tr",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "tests/fake_server.py",
        "line": 64,
        "nonRuntime": true
      }
    },
    {
      "ruleId": "MTC-SUP-012",
      "title": "Package has no license",
      "category": "hygiene",
      "severity": "info",
      "confidence": "strong",
      "description": "\"unreal-engine-mcp\" has no declared license. This is a legal/reuse concern, not a security finding.",
      "location": {
        "kind": "package",
        "name": "unreal-engine-mcp"
      }
    }
  ],
  "toxicFlows": [
    {
      "id": "flow-1",
      "severity": "critical",
      "confidence": "strong",
      "untrustedInput": [
        "preset_download_url",
        "preset_download_polyhaven",
        "preset_download_ambientcg",
        "preset_download_kenney",
        "preset_fab_download"
      ],
      "sensitiveSource": [
        "ue_bt_info"
      ],
      "externalSink": [
        "ue_exec_python",
        "ue_spawn_actor",
        "ue_spawn_many",
        "ue_pcg_spawn_volume",
        "ue_foliage_spawn_volume"
      ],
      "selfContained": false,
      "path": [
        "preset_download_ambientcg",
        "ue_bt_info",
        "ue_exec_python"
      ],
      "pathWired": false,
      "description": "A cross-tool exfiltration chain exists: preset_download_ambientcg → ue_bt_info → ue_exec_python."
    }
  ],
  "capabilities": [
    {
      "tool": "ue_engine_list",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_engine_templates",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_project_create",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_project_find",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_project_info",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_project_set_plugins",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_editor_open",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_cpp_class_create",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_build_start",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_build_status",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_live_compile",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_package_start",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_package_status",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_build_unblock",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_editor_status",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_editor_close",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "preset_library_list",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "preset_download_url",
      "tags": [
        "untrusted-input"
      ],
      "reasons": {
        "untrusted-input": [
          "keyword \"download\""
        ]
      }
    },
    {
      "tool": "preset_extract_archive",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "preset_search_polyhaven",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "preset_download_polyhaven",
      "tags": [
        "untrusted-input"
      ],
      "reasons": {
        "untrusted-input": [
          "keyword \"download\""
        ]
      }
    },
    {
      "tool": "preset_search_ambientcg",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "preset_download_ambientcg",
      "tags": [
        "untrusted-input"
      ],
      "reasons": {
        "untrusted-input": [
          "keyword \"download\""
        ]
      }
    },
    {
      "tool": "preset_download_kenney",
      "tags": [
        "untrusted-input"
      ],
      "reasons": {
        "untrusted-input": [
          "keyword \"download\""
        ]
      }
    },
    {
      "tool": "preset_fab_list_vault",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "preset_fab_download",
      "tags": [
        "untrusted-input"
      ],
      "reasons": {
        "untrusted-input": [
          "keyword \"download\""
        ]
      }
    },
    {
      "tool": "ue_status",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_read_log",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_exec_python",
      "tags": [
        "code-exec"
      ],
      "reasons": {
        "code-exec": [
          "keyword \"exec\" in tool name"
        ]
      }
    },
    {
      "tool": "ue_save_all",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_import_assets",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_list_assets",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_delete_asset",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_rename_asset",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_duplicate_asset",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_make_folder",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_attach_actor",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_detach_actor",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_actor_hierarchy",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_new_level",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_open_level",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_spawn_actor",
      "tags": [
        "code-exec"
      ],
      "reasons": {
        "code-exec": [
          "keyword \"spawn\" in tool name"
        ]
      }
    },
    {
      "tool": "ue_list_actors",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_spawn_many",
      "tags": [
        "code-exec"
      ],
      "reasons": {
        "code-exec": [
          "keyword \"spawn\" in tool name"
        ]
      }
    },
    {
      "tool": "ue_set_actor_transform",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_set_actor_property",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_list_actor_components",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_delete_actor",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_create_blueprint",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_add_component",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_add_variable",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_set_class_defaults",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_compile_blueprint",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_reparent_blueprint",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_create_material",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_create_material_instance",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_assign_material",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_console_command",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_render_sequence",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_render_status",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_get_camera",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_set_camera",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_focus_actor",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_screenshot",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_set_replication",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_set_net_config",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_net_info",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_set_component_replication",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_set_component_default",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_configure_pie",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_start_pie",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_stop_pie",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_set_project_setting",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_import_audio",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_create_metasound_source",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_create_sound_cue",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_find_classes",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_find_structs",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_reflect_enum",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_create_widget_blueprint",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_umg_tree_info",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_umg_add_widget",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_umg_set_widget_property",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_umg_set_slot",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_umg_remove_widget",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_bp_list_graphs",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_bp_list_events",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_bp_add_event_override",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_bp_add_function_graph",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_bp_graph_info",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_bp_add_call_function",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_bp_add_branch",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_bp_add_custom_event",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_bp_add_variable_node",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_bp_add_node_by_name",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_bp_list_palette",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_bp_connect",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_bp_break_pin",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_bp_set_pin_value",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_bp_remove_node",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_skeleton_info",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_anim_sequence_info",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_create_blend_space_1d",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_create_anim_montage",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_create_anim_blueprint",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_create_niagara_system",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_niagara_system_info",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_set_component_physics",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_component_physics_info",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_nav_rebuild",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_nav_query_point",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_nav_find_path",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_create_blackboard",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_blackboard_add_key",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_blackboard_info",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_create_behavior_tree",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_bt_add_node",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_bt_add_decorator",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_bt_add_service",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_bt_set_node_property",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_bt_info",
      "tags": [
        "sensitive-source"
      ],
      "reasons": {
        "sensitive-source": [
          "keyword \"dump\""
        ]
      }
    },
    {
      "tool": "ue_create_eqs_asset",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_create_gameplay_ability",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_create_gameplay_effect",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_ge_add_modifier",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_ge_add_component",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_ge_info",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_landscape_list",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_landscape_info",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_landscape_import_heightmap",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_landscape_import_weightmap",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_landscape_export_heightmap",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_landscape_set_material",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_landscape_set_grass",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_create_pcg_graph",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_pcg_add_node",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_pcg_connect",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_pcg_disconnect",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_pcg_remove_node",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_pcg_set_node_property",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_pcg_graph_info",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_pcg_spawn_volume",
      "tags": [
        "code-exec"
      ],
      "reasons": {
        "code-exec": [
          "keyword \"spawn\" in tool name"
        ]
      }
    },
    {
      "tool": "ue_pcg_generate",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_pcg_cleanup",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_create_foliage_type",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_set_foliage_property",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_foliage_add_instances",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_foliage_scatter",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_foliage_list",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_foliage_query",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_foliage_remove",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_create_foliage_spawner",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_foliage_spawn_volume",
      "tags": [
        "code-exec"
      ],
      "reasons": {
        "code-exec": [
          "keyword \"spawn\" in tool name"
        ]
      }
    },
    {
      "tool": "ue_foliage_simulate",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_create_level_sequence",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_sequence_info",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_sequence_add_actor",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_sequence_add_track",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_sequence_add_key",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_sequence_set_range",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_sequence_remove",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_sequence_open",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ue_flow_run",
      "tags": [],
      "reasons": {}
    }
  ],
  "surfaceDigest": "0429e52e8d7136befa312f40fe2b6e6f7e4afe29fbe34c95ce361604b8b7f089",
  "stats": {
    "tools": 163,
    "prompts": 0,
    "resources": 0,
    "findingsBySeverity": {
      "critical": 1,
      "high": 9,
      "medium": 0,
      "low": 9,
      "info": 1
    }
  }
}