Raw scan report

Breakpoint — 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": "breakpoint-mcp",
    "source": {
      "kind": "package",
      "origin": "breakpoint-mcp"
    },
    "server": {
      "name": "breakpoint-mcp"
    }
  },
  "grade": "A",
  "score": {
    "score": 93,
    "threatScore": 100,
    "grade": "A",
    "band": "A",
    "categorySubtotals": {
      "injection": 0,
      "exfiltration": 0,
      "permissions": 0,
      "supply-chain": 0,
      "network": 0,
      "hygiene": 0
    },
    "vector": [
      {
        "kind": "client",
        "term": "capability-exposure",
        "level": "high",
        "label": "capability blast radius (high) — client exposure if the model is manipulated",
        "appliedPenalty": 6
      },
      {
        "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": "high",
    "reasons": [
      "ingests untrusted external content (a prompt-injection entry point)",
      "can execute shell commands or code"
    ],
    "tags": [
      "code-exec",
      "untrusted-input"
    ]
  },
  "coverage": {
    "level": "source",
    "inputs": {
      "toolSurface": true,
      "implementationSource": true,
      "packageMetadata": true,
      "liveTransport": false
    },
    "caveats": [
      "Tools were statically extracted from the published source (200 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-CAP-001",
      "title": "Tool \"asset_gen_configure\" exposes command/code execution",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "Tool \"asset_gen_configure\" appears to run shell commands or evaluate code (parameter \"command\"). 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": "asset_gen_configure"
      },
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "tags": [
          "code-exec"
        ]
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (dist/cli/doctor.js)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`dist/cli/doctor.js:35`): 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": "dist/cli/doctor.js"
      },
      "evidence": "spawnSync } from \"node:child_process\"; import { loadConfig } from \"../config.js\"; import { CAPABILITY_GROUPS, droppedTo",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "dist/cli/doctor.js",
        "line": 35,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (dist/peers.js)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`dist/peers.js:160`): 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": "dist/peers.js"
      },
      "evidence": "akes. */ async spawn(opts) { const liveCount = this.live().length; if (liveCount + opts.count >",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "dist/peers.js",
        "line": 160,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (dist/recipes.js)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`dist/recipes.js:206`): 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": "dist/recipes.js"
      },
      "evidence": "ribe(\"Headless peers to spawn (1-4; default 3)\"), seed: z.string().optional().describe(\"RNG seed given to ev",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "dist/recipes.js",
        "line": 206,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (dist/spawn-guard.js)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`dist/spawn-guard.js:1`): 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": "dist/spawn-guard.js"
      },
      "evidence": "rt { spawn } from \"node:child_process\"; /** * The remedy sentence for a Godot binary that would not start. * * Kept s",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "dist/spawn-guard.js",
        "line": 1,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (dist/stdio.js)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`dist/stdio.js:1`): 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": "dist/stdio.js"
      },
      "evidence": "rt { spawn } from \"node:child_process\"; import { FrameDecoder, encodeFrame } from \"./framing.js\"; import { log } from \".",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "dist/stdio.js",
        "line": 1,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (dist/tools/assetgen.js)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`dist/tools/assetgen.js:1`): 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": "dist/tools/assetgen.js"
      },
      "evidence": "rt { spawn } from \"node:child_process\"; import fs from \"node:fs\"; import { z } from \"zod\"; import { gate } from \"../conf",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "dist/tools/assetgen.js",
        "line": 1,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (dist/tools/cli.js)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`dist/tools/cli.js:1`): 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": "dist/tools/cli.js"
      },
      "evidence": "{ execFile } from \"node:child_process\"; import { promisify } from \"node:util\"; import { z } from \"zod\"; import { log } f",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "dist/tools/cli.js",
        "line": 1,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (dist/tools/runtime.js)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`dist/tools/runtime.js:625`): 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": "dist/tools/runtime.js"
      },
      "evidence": "ribe(`How many peers to spawn (1-${MAX_PEERS}; ${MAX_PEERS} live peers is the ceiling)`), scene: z.string().",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "dist/tools/runtime.js",
        "line": 625,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (dist/tools/vcs.js)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`dist/tools/vcs.js:1`): 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": "dist/tools/vcs.js"
      },
      "evidence": "{ execFile } from \"node:child_process\"; import { promisify } from \"node:util\"; import { z } from \"zod\"; import { ok } fr",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "dist/tools/vcs.js",
        "line": 1,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-FLOW-005",
      "title": "Untrusted input can drive an external action",
      "category": "exfiltration",
      "severity": "medium",
      "confidence": "strong",
      "description": "Untrusted-input tools ([leaderboard_scaffold]) co-exist with external-action tools ([asset_gen_configure]). A prompt injection could cause unwanted external actions, though no direct sensitive-data leak path was found.",
      "remediation": "Require confirmation for state-changing/egress actions triggered after processing untrusted content.",
      "location": {
        "kind": "flow",
        "name": "leaderboard_scaffold → asset_gen_configure"
      },
      "evidence": "untrusted [leaderboard_scaffold] → sinks [asset_gen_configure]",
      "owasp": "LLM06:2025 Excessive Agency",
      "references": [],
      "data": {
        "untrusted": [
          "leaderboard_scaffold"
        ],
        "sinks": [
          "asset_gen_configure"
        ]
      }
    },
    {
      "ruleId": "MTC-CAP-006",
      "title": "Unconstrained command parameter \"command\" on \"asset_gen_configure\"",
      "category": "permissions",
      "severity": "medium",
      "confidence": "heuristic",
      "description": "Tool \"asset_gen_configure\" takes a command-shaped parameter \"command\" 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": "asset_gen_configure",
        "field": "inputSchema.properties.command"
      },
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "param": "command"
      }
    },
    {
      "ruleId": "MTC-CAP-005",
      "title": "Mutating tool \"asset_gen_configure\" declares no destructiveHint",
      "category": "hygiene",
      "severity": "low",
      "confidence": "heuristic",
      "description": "Tool \"asset_gen_configure\" 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": "asset_gen_configure"
      },
      "data": {
        "tags": [
          "code-exec"
        ]
      }
    }
  ],
  "toxicFlows": [
    {
      "id": "flow-1",
      "severity": "medium",
      "confidence": "strong",
      "untrustedInput": [
        "leaderboard_scaffold"
      ],
      "sensitiveSource": [],
      "externalSink": [
        "asset_gen_configure"
      ],
      "selfContained": false,
      "description": "Untrusted input can drive an external action even though no sensitive source is exposed."
    }
  ],
  "capabilities": [
    {
      "tool": "asset_gen_configure",
      "tags": [
        "code-exec"
      ],
      "reasons": {
        "code-exec": [
          "parameter \"command\""
        ]
      }
    },
    {
      "tool": "asset_gen_placeholder",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "asset_gen_sprite",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "asset_gen_texture",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "asset_gen_icon",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "asset_gen_audio_sfx",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "asset_gen_model",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "backend_detect",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "backend_configure",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "leaderboard_scaffold",
      "tags": [
        "untrusted-input"
      ],
      "reasons": {
        "untrusted-input": [
          "keyword \"fetch\""
        ]
      }
    },
    {
      "tool": "cloudsave_scaffold",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "auth_scaffold",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "godot_version",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "godot_launch_editor",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "godot_run_project",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "breakpoint_doctor",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "cs_dbg_launch",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "cs_dbg_attach",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "cs_dbg_set_breakpoints",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "cs_dbg_continue",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "cs_dbg_step",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "cs_dbg_stack_trace",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "cs_dbg_scopes",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "cs_dbg_variables",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "cs_dbg_evaluate",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "cs_dbg_set_variable",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "cs_dbg_watch",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "cs_dbg_set_exception_breakpoints",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "cs_dbg_restart",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "cs_completion",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "cs_hover",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "cs_definition",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "cs_references",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "cs_rename",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "cs_document_symbols",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "cs_workspace_symbols",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "cs_signature_help",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "cs_diagnostics",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "cs_code_action",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dbg_launch",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dbg_attach",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dbg_set_breakpoints",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dbg_continue",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dbg_step",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dbg_stack_trace",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dbg_scopes",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dbg_variables",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dbg_evaluate",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dbg_watch",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dbg_set_exception_breakpoints",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dbg_set_variable",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dbg_restart",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dbg_goto",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dbg_data_breakpoints",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "anim_player_create",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "anim_create",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "anim_delete",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "anim_add_track",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "anim_insert_key",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "anim_remove_key",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "anim_set_length",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "anim_set_loop",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "anim_get_track_keys",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "anim_list",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "anim_tree_create",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "anim_tree_add_node",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "anim_statemachine_add_state",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "anim_statemachine_add_transition",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "audio_player_create",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "audio_set_stream",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "audio_bus_add",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "audio_bus_add_effect",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "audio_bus_set_volume",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "audio_set_bus_layout",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "editor_ping",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "editor_get_state",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "editor_undo",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "editor_redo",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "project_get_info",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "project_get_setting",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "project_set_setting",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "filesystem_list",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "filesystem_scan",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "filesystem_move",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "filesystem_create_dir",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "selection_get",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "selection_set",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "main_screen_get",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "main_screen_set",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "classdb_get_class",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "class_reference",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "docs_search",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "screenshot_editor",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "node_add",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "node_delete",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "node_rename",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "node_reparent",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "node_set_property",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "node_get_property",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "node_duplicate",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "node_get_children",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "node_find",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "node_list_groups",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "node_add_to_group",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "node_remove_from_group",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "node_instantiate_scene",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "node_move_child",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "node_change_type",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "node_set_owner",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "node_set_editable_instance",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "node_call_method",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "node_get_path",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "node_list_properties",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "particles_create",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "particles_set_process_material",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "particles_set_amount",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "particles_set_lifetime",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "particles_set_emitting",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "particles_set_texture",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "body_create",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "collisionshape_add",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "body_set_collision_layer",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "body_set_collision_mask",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "area_set_monitoring",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "area_set_gravity",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "joint_create",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "joint_set_bodies",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "collisionpolygon_add",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "rigidbody_set_properties",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "body_set_physics_material",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "physics_set_gravity",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "inputmap_add_action",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "inputmap_add_event",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "inputmap_list",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "inputmap_erase_action",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "project_add_autoload",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "project_remove_autoload",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "project_add_export_preset",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "project_set_main_scene",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "project_list_settings",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "editorsettings_get_set",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "test_detect",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "test_list",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "resource_create",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "resource_load",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "resource_save",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "resource_duplicate",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "resource_get_property",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "resource_set_property",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "resource_get_import_settings",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "resource_set_import_settings",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "scene_get_tree",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "scene_open",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "scene_save",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "scene_new",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "scene_list_open",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "scene_reload",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "scene_close",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "scene_pack",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "scene_get_dependencies",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "scene_save_as",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "shader_create",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "shader_set_code",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "shadermaterial_create",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "shadermaterial_set_shader",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "shadermaterial_set_param",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "signal_list",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "signal_list_connections",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "signal_connect",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "signal_disconnect",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "signal_add_user_signal",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "signal_emit",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "meshinstance_create",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "mesh_set_surface_material",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "primitive_mesh_create",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "light_create",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "camera_create",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "csg_create",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "navregion_create",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "navagent_configure",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "environment_create",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "environment_set_sky",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "tileset_create",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "tileset_add_source",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "tileset_add_tile",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "tileset_set_tile_collision",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "tilemaplayer_create",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "tilemap_set_cell",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "tilemap_set_cells_rect",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "tilemap_get_cell",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "tilemap_clear",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "control_create",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "container_add_child",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "control_set_anchors",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "control_set_layout_preset",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "control_set_size_flags",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "control_set_theme",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "theme_create",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "theme_set_color",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "theme_set_font",
      "tags": [],
      "reasons": {}
    }
  ],
  "surfaceDigest": "535d080bce3c849095b490d37bb11ae91b6427a914943d3033bd389690f675ea",
  "stats": {
    "tools": 200,
    "prompts": 0,
    "resources": 0,
    "findingsBySeverity": {
      "critical": 0,
      "high": 10,
      "medium": 2,
      "low": 1,
      "info": 0
    }
  }
}