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.
{
"tool": {
"name": "mcptrustchecker",
"version": "1.13.0",
"methodologyVersion": "mcptrustchecker-1.13"
},
"target": {
"id": "@keeveeg/godot-mcp",
"source": {
"kind": "package",
"origin": "@keeveeg/godot-mcp"
},
"server": {
"name": "@keeveeg/godot-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": [
"can execute shell commands or code"
],
"tags": [
"code-exec"
]
},
"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 \"find_script_references\" exposes command/code execution",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "Tool \"find_script_references\" appears to run shell commands or evaluate code (parameter \"script\"). 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": "find_script_references"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-CAP-001",
"title": "Tool \"set_breakpoint\" exposes command/code execution",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "Tool \"set_breakpoint\" appears to run shell commands or evaluate code (parameter \"script\"). 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": "set_breakpoint"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-CAP-001",
"title": "Tool \"remove_breakpoint\" exposes command/code execution",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "Tool \"remove_breakpoint\" appears to run shell commands or evaluate code (parameter \"script\"). 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": "remove_breakpoint"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (server/dist/tools/testing.js)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`server/dist/tools/testing.js:45`): 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": "server/dist/tools/testing.js"
},
"evidence": ".describe('Node type to spawn (default: Node2D)'), count: z.number().int().min(0, 'Count must be non-negativ",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "server/dist/tools/testing.js",
"line": 45,
"nonRuntime": false
}
},
{
"ruleId": "MTC-CAP-006",
"title": "Unconstrained command parameter \"script_path\" on \"find_script_references\"",
"category": "permissions",
"severity": "medium",
"confidence": "heuristic",
"description": "Tool \"find_script_references\" takes a command-shaped parameter \"script_path\" 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": "find_script_references",
"field": "inputSchema.properties.script_path"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"param": "script_path"
}
},
{
"ruleId": "MTC-CAP-006",
"title": "Unconstrained command parameter \"script_path\" on \"set_breakpoint\"",
"category": "permissions",
"severity": "medium",
"confidence": "heuristic",
"description": "Tool \"set_breakpoint\" takes a command-shaped parameter \"script_path\" 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": "set_breakpoint",
"field": "inputSchema.properties.script_path"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"param": "script_path"
}
},
{
"ruleId": "MTC-CAP-006",
"title": "Unconstrained command parameter \"script_path\" on \"remove_breakpoint\"",
"category": "permissions",
"severity": "medium",
"confidence": "heuristic",
"description": "Tool \"remove_breakpoint\" takes a command-shaped parameter \"script_path\" 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": "remove_breakpoint",
"field": "inputSchema.properties.script_path"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"param": "script_path"
}
},
{
"ruleId": "MTC-CAP-005",
"title": "Mutating tool \"find_script_references\" declares no destructiveHint",
"category": "hygiene",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"find_script_references\" 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": "find_script_references"
},
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-CAP-005",
"title": "Mutating tool \"set_breakpoint\" declares no destructiveHint",
"category": "hygiene",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"set_breakpoint\" 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": "set_breakpoint"
},
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-CAP-005",
"title": "Mutating tool \"remove_breakpoint\" declares no destructiveHint",
"category": "hygiene",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"remove_breakpoint\" 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": "remove_breakpoint"
},
"data": {
"tags": [
"code-exec"
]
}
}
],
"toxicFlows": [],
"capabilities": [
{
"tool": "list_addons",
"tags": [],
"reasons": {}
},
{
"tool": "install_addon",
"tags": [],
"reasons": {}
},
{
"tool": "uninstall_addon",
"tags": [],
"reasons": {}
},
{
"tool": "update_addon",
"tags": [],
"reasons": {}
},
{
"tool": "configure_addon",
"tags": [],
"reasons": {}
},
{
"tool": "get_addon_config",
"tags": [],
"reasons": {}
},
{
"tool": "analyze_scene_complexity",
"tags": [],
"reasons": {}
},
{
"tool": "analyze_signal_flow",
"tags": [],
"reasons": {}
},
{
"tool": "find_unused_resources",
"tags": [],
"reasons": {}
},
{
"tool": "get_project_statistics",
"tags": [],
"reasons": {}
},
{
"tool": "list_animations",
"tags": [],
"reasons": {}
},
{
"tool": "create_animation",
"tags": [],
"reasons": {}
},
{
"tool": "add_animation_track",
"tags": [],
"reasons": {}
},
{
"tool": "set_animation_keyframe",
"tags": [],
"reasons": {}
},
{
"tool": "get_animation_info",
"tags": [],
"reasons": {}
},
{
"tool": "remove_animation",
"tags": [],
"reasons": {}
},
{
"tool": "create_animation_tree",
"tags": [],
"reasons": {}
},
{
"tool": "get_animation_tree_structure",
"tags": [],
"reasons": {}
},
{
"tool": "set_tree_parameter",
"tags": [],
"reasons": {}
},
{
"tool": "reset_tree_parameter",
"tags": [],
"reasons": {}
},
{
"tool": "add_state_machine_state",
"tags": [],
"reasons": {}
},
{
"tool": "remove_state_machine_state",
"tags": [],
"reasons": {}
},
{
"tool": "add_state_machine_transition",
"tags": [],
"reasons": {}
},
{
"tool": "remove_state_machine_transition",
"tags": [],
"reasons": {}
},
{
"tool": "remove_animation_track",
"tags": [],
"reasons": {}
},
{
"tool": "remove_animation_keyframe",
"tags": [],
"reasons": {}
},
{
"tool": "remove_animation_tree",
"tags": [],
"reasons": {}
},
{
"tool": "get_tree_parameter",
"tags": [],
"reasons": {}
},
{
"tool": "add_audio_player",
"tags": [],
"reasons": {}
},
{
"tool": "remove_audio_player",
"tags": [],
"reasons": {}
},
{
"tool": "add_audio_bus",
"tags": [],
"reasons": {}
},
{
"tool": "add_audio_bus_effect",
"tags": [],
"reasons": {}
},
{
"tool": "set_audio_bus",
"tags": [],
"reasons": {}
},
{
"tool": "get_audio_bus_layout",
"tags": [],
"reasons": {}
},
{
"tool": "remove_audio_bus_effect",
"tags": [],
"reasons": {}
},
{
"tool": "remove_audio_bus_by_name",
"tags": [],
"reasons": {}
},
{
"tool": "get_audio_info",
"tags": [],
"reasons": {}
},
{
"tool": "get_audio_settings",
"tags": [],
"reasons": {}
},
{
"tool": "set_audio_bus_layout",
"tags": [],
"reasons": {}
},
{
"tool": "add_audio_bus_config",
"tags": [],
"reasons": {}
},
{
"tool": "remove_audio_bus",
"tags": [],
"reasons": {}
},
{
"tool": "set_audio_bus_volume",
"tags": [],
"reasons": {}
},
{
"tool": "get_audio_bus_effects",
"tags": [],
"reasons": {}
},
{
"tool": "set_audio_driver",
"tags": [],
"reasons": {}
},
{
"tool": "set_audio_mix_rate",
"tags": [],
"reasons": {}
},
{
"tool": "set_audio_output_latency",
"tags": [],
"reasons": {}
},
{
"tool": "find_nodes_by_type",
"tags": [],
"reasons": {}
},
{
"tool": "find_signal_connections",
"tags": [],
"reasons": {}
},
{
"tool": "batch_set_property",
"tags": [],
"reasons": {}
},
{
"tool": "batch_get_property",
"tags": [],
"reasons": {}
},
{
"tool": "find_node_references",
"tags": [],
"reasons": {}
},
{
"tool": "get_scene_dependencies",
"tags": [],
"reasons": {}
},
{
"tool": "cross_scene_set_property",
"tags": [],
"reasons": {}
},
{
"tool": "cross_scene_get_property",
"tags": [],
"reasons": {}
},
{
"tool": "find_script_references",
"tags": [
"code-exec"
],
"reasons": {
"code-exec": [
"parameter \"script\""
]
}
},
{
"tool": "detect_circular_dependencies",
"tags": [],
"reasons": {}
},
{
"tool": "get_build_settings",
"tags": [],
"reasons": {}
},
{
"tool": "set_build_configuration",
"tags": [],
"reasons": {}
},
{
"tool": "set_scripting_backend",
"tags": [],
"reasons": {}
},
{
"tool": "set_export_filter",
"tags": [],
"reasons": {}
},
{
"tool": "set_custom_features",
"tags": [],
"reasons": {}
},
{
"tool": "set_debug_options",
"tags": [],
"reasons": {}
},
{
"tool": "validate_build_settings",
"tags": [],
"reasons": {}
},
{
"tool": "get_build_command",
"tags": [],
"reasons": {}
},
{
"tool": "get_debug_settings",
"tags": [],
"reasons": {}
},
{
"tool": "set_remote_debug",
"tags": [],
"reasons": {}
},
{
"tool": "set_profiler_settings",
"tags": [],
"reasons": {}
},
{
"tool": "set_error_handling",
"tags": [],
"reasons": {}
},
{
"tool": "get_editor_log",
"tags": [],
"reasons": {}
},
{
"tool": "clear_editor_log",
"tags": [],
"reasons": {}
},
{
"tool": "set_breakpoint",
"tags": [
"code-exec"
],
"reasons": {
"code-exec": [
"parameter \"script\""
]
}
},
{
"tool": "remove_breakpoint",
"tags": [
"code-exec"
],
"reasons": {
"code-exec": [
"parameter \"script\""
]
}
},
{
"tool": "list_breakpoints",
"tags": [],
"reasons": {}
},
{
"tool": "get_call_stack",
"tags": [],
"reasons": {}
},
{
"tool": "evaluate_expression",
"tags": [],
"reasons": {}
},
{
"tool": "step_over",
"tags": [],
"reasons": {}
},
{
"tool": "step_into",
"tags": [],
"reasons": {}
},
{
"tool": "continue_execution",
"tags": [],
"reasons": {}
},
{
"tool": "get_editor_errors",
"tags": [],
"reasons": {}
},
{
"tool": "get_editor_screenshot",
"tags": [],
"reasons": {}
},
{
"tool": "get_game_screenshot",
"tags": [],
"reasons": {}
},
{
"tool": "execute_editor_script",
"tags": [],
"reasons": {}
},
{
"tool": "clear_output",
"tags": [],
"reasons": {}
},
{
"tool": "get_signals",
"tags": [],
"reasons": {}
},
{
"tool": "reload_plugin",
"tags": [],
"reasons": {}
},
{
"tool": "reload_project",
"tags": [],
"reasons": {}
},
{
"tool": "get_output_log",
"tags": [],
"reasons": {}
},
{
"tool": "get_diagnostics",
"tags": [],
"reasons": {}
},
{
"tool": "get_editor_settings",
"tags": [],
"reasons": {}
},
{
"tool": "set_editor_theme",
"tags": [],
"reasons": {}
},
{
"tool": "set_main_screen_tab",
"tags": [],
"reasons": {}
},
{
"tool": "set_font_size",
"tags": [],
"reasons": {}
},
{
"tool": "set_editor_scale",
"tags": [],
"reasons": {}
},
{
"tool": "save_editor_layout",
"tags": [],
"reasons": {}
},
{
"tool": "load_editor_layout",
"tags": [],
"reasons": {}
},
{
"tool": "reset_editor_layout",
"tags": [],
"reasons": {}
},
{
"tool": "delete_editor_layout",
"tags": [],
"reasons": {}
},
{
"tool": "list_export_presets",
"tags": [],
"reasons": {}
},
{
"tool": "export_project",
"tags": [],
"reasons": {}
},
{
"tool": "get_export_info",
"tags": [],
"reasons": {}
},
{
"tool": "validate_export",
"tags": [],
"reasons": {}
},
{
"tool": "get_export_templates",
"tags": [],
"reasons": {}
},
{
"tool": "create_export_preset",
"tags": [],
"reasons": {}
},
{
"tool": "delete_export_preset",
"tags": [],
"reasons": {}
},
{
"tool": "simulate_gameplay_scenario",
"tags": [],
"reasons": {}
},
{
"tool": "record_gameplay",
"tags": [],
"reasons": {}
},
{
"tool": "replay_gameplay",
"tags": [],
"reasons": {}
},
{
"tool": "create_test_character",
"tags": [],
"reasons": {}
},
{
"tool": "delete_test_character",
"tags": [],
"reasons": {}
},
{
"tool": "navigate_character",
"tags": [],
"reasons": {}
},
{
"tool": "assert_game_state",
"tags": [],
"reasons": {}
},
{
"tool": "wait_for_game_event",
"tags": [],
"reasons": {}
},
{
"tool": "simulate_key",
"tags": [],
"reasons": {}
},
{
"tool": "simulate_mouse_click",
"tags": [],
"reasons": {}
},
{
"tool": "simulate_mouse_move",
"tags": [],
"reasons": {}
},
{
"tool": "simulate_action",
"tags": [],
"reasons": {}
},
{
"tool": "simulate_sequence",
"tags": [],
"reasons": {}
},
{
"tool": "get_input_actions",
"tags": [],
"reasons": {}
},
{
"tool": "set_input_action",
"tags": [],
"reasons": {}
},
{
"tool": "remove_input_action",
"tags": [],
"reasons": {}
},
{
"tool": "get_memory_usage",
"tags": [],
"reasons": {}
},
{
"tool": "track_object_creation",
"tags": [],
"reasons": {}
},
{
"tool": "stop_object_tracking",
"tags": [],
"reasons": {}
},
{
"tool": "find_memory_leaks",
"tags": [],
"reasons": {}
},
{
"tool": "get_object_count",
"tags": [],
"reasons": {}
},
{
"tool": "force_garbage_collection",
"tags": [],
"reasons": {}
},
{
"tool": "setup_navigation_region",
"tags": [],
"reasons": {}
},
{
"tool": "setup_navigation_agent",
"tags": [],
"reasons": {}
},
{
"tool": "bake_navigation_mesh",
"tags": [],
"reasons": {}
},
{
"tool": "set_navigation_layers",
"tags": [],
"reasons": {}
},
{
"tool": "get_navigation_info",
"tags": [],
"reasons": {}
},
{
"tool": "find_navigation_path",
"tags": [],
"reasons": {}
},
{
"tool": "setup_navigation_link",
"tags": [],
"reasons": {}
},
{
"tool": "remove_navigation_region",
"tags": [],
"reasons": {}
},
{
"tool": "remove_navigation_agent",
"tags": [],
"reasons": {}
},
{
"tool": "remove_navigation_link",
"tags": [],
"reasons": {}
},
{
"tool": "add_node",
"tags": [],
"reasons": {}
},
{
"tool": "delete_node",
"tags": [],
"reasons": {}
},
{
"tool": "duplicate_node",
"tags": [],
"reasons": {}
},
{
"tool": "move_node",
"tags": [],
"reasons": {}
},
{
"tool": "update_property",
"tags": [],
"reasons": {}
},
{
"tool": "get_node_properties",
"tags": [],
"reasons": {}
},
{
"tool": "add_resource",
"tags": [],
"reasons": {}
},
{
"tool": "remove_resource",
"tags": [],
"reasons": {}
},
{
"tool": "set_anchor_preset",
"tags": [],
"reasons": {}
},
{
"tool": "rename_node",
"tags": [],
"reasons": {}
},
{
"tool": "connect_signal",
"tags": [],
"reasons": {}
},
{
"tool": "disconnect_signal",
"tags": [],
"reasons": {}
},
{
"tool": "get_node_groups",
"tags": [],
"reasons": {}
},
{
"tool": "set_node_groups",
"tags": [],
"reasons": {}
},
{
"tool": "find_nodes_in_group",
"tags": [],
"reasons": {}
},
{
"tool": "get_editor_selection",
"tags": [],
"reasons": {}
},
{
"tool": "select_nodes",
"tags": [],
"reasons": {}
},
{
"tool": "clear_editor_selection",
"tags": [],
"reasons": {}
},
{
"tool": "get_node_default_properties",
"tags": [],
"reasons": {}
},
{
"tool": "set_node_preset",
"tags": [],
"reasons": {}
},
{
"tool": "get_available_node_types",
"tags": [],
"reasons": {}
},
{
"tool": "get_node_signals",
"tags": [],
"reasons": {}
},
{
"tool": "get_node_methods",
"tags": [],
"reasons": {}
},
{
"tool": "get_node_enums",
"tags": [],
"reasons": {}
},
{
"tool": "get_node_constants",
"tags": [],
"reasons": {}
},
{
"tool": "get_class_hierarchy",
"tags": [],
"reasons": {}
},
{
"tool": "create_particles",
"tags": [],
"reasons": {}
},
{
"tool": "delete_particles",
"tags": [],
"reasons": {}
},
{
"tool": "set_particle_material",
"tags": [],
"reasons": {}
},
{
"tool": "set_particle_color_gradient",
"tags": [],
"reasons": {}
},
{
"tool": "apply_particle_preset",
"tags": [],
"reasons": {}
},
{
"tool": "get_particle_info",
"tags": [],
"reasons": {}
},
{
"tool": "set_particle_emission_shape",
"tags": [],
"reasons": {}
},
{
"tool": "set_particle_velocity_curve",
"tags": [],
"reasons": {}
},
{
"tool": "get_particle_material",
"tags": [],
"reasons": {}
},
{
"tool": "get_particle_color_gradient",
"tags": [],
"reasons": {}
},
{
"tool": "get_particle_emission_shape",
"tags": [],
"reasons": {}
},
{
"tool": "get_particle_velocity_curve",
"tags": [],
"reasons": {}
},
{
"tool": "setup_physics_body",
"tags": [],
"reasons": {}
},
{
"tool": "setup_collision",
"tags": [],
"reasons": {}
},
{
"tool": "set_physics_layers",
"tags": [],
"reasons": {}
},
{
"tool": "get_physics_layers",
"tags": [],
"reasons": {}
},
{
"tool": "get_collision_info",
"tags": [],
"reasons": {}
},
{
"tool": "add_raycast",
"tags": [],
"reasons": {}
},
{
"tool": "get_physics_material",
"tags": [],
"reasons": {}
},
{
"tool": "set_physics_material",
"tags": [],
"reasons": {}
},
{
"tool": "get_physics_body",
"tags": [],
"reasons": {}
},
{
"tool": "remove_collision",
"tags": [],
"reasons": {}
},
{
"tool": "remove_raycast",
"tags": [],
"reasons": {}
},
{
"tool": "get_physics_settings",
"tags": [],
"reasons": {}
},
{
"tool": "set_gravity",
"tags": [],
"reasons": {}
},
{
"tool": "set_physics_fps",
"tags": [],
"reasons": {}
},
{
"tool": "set_physics_engine",
"tags": [],
"reasons": {}
},
{
"tool": "set_collision_layer_name",
"tags": [],
"reasons": {}
},
{
"tool": "get_collision_layers",
"tags": [],
"reasons": {}
},
{
"tool": "set_default_gravity",
"tags": [],
"reasons": {}
},
{
"tool": "set_default_linear_damp",
"tags": [],
"reasons": {}
},
{
"tool": "export_for_platform",
"tags": [],
"reasons": {}
},
{
"tool": "validate_platform_export",
"tags": [],
"reasons": {}
},
{
"tool": "get_platform_export_templates",
"tags": [],
"reasons": {}
},
{
"tool": "create_platform_export_preset",
"tags": [],
"reasons": {}
},
{
"tool": "run_exported_build",
"tags": [],
"reasons": {}
},
{
"tool": "validate_export_for_platform",
"tags": [],
"reasons": {}
},
{
"tool": "get_platform_settings",
"tags": [],
"reasons": {}
}
],
"surfaceDigest": "933403188cf1ca10eb370775b96455b45c5122a1046a231c1c365c8b5046bd4e",
"stats": {
"tools": 200,
"prompts": 0,
"resources": 0,
"findingsBySeverity": {
"critical": 0,
"high": 4,
"medium": 3,
"low": 3,
"info": 0
}
}
}