Fxhoudinimcp — 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": "fxhoudinimcp",
"source": {
"kind": "package",
"origin": "fxhoudinimcp"
},
"server": {
"name": "fxhoudinimcp"
}
},
"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)",
"reads sensitive or local data",
"has a read → egress path (a data-exfiltration surface)",
"can execute shell commands or code"
],
"tags": [
"sensitive-source",
"untrusted-input",
"code-exec"
]
},
"coverage": {
"level": "source",
"inputs": {
"toolSurface": true,
"implementationSource": true,
"packageMetadata": true,
"liveTransport": false
},
"caveats": [
"Tools were statically extracted from the published source (188 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-SRC-002",
"title": "Shell/command execution in server code (python/fxhoudinimcp/install.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`python/fxhoudinimcp/install.py:255`): 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": "python/fxhoudinimcp/install.py"
},
"evidence": "try: result = subprocess.run( [\"claude\", \"mcp\", \"get\", SERVER_NAME], capture_output=True, text=Tru",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "python/fxhoudinimcp/install.py",
"line": 255,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (python/fxhoudinimcp/uninstall.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`python/fxhoudinimcp/uninstall.py:163`): 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": "python/fxhoudinimcp/uninstall.py"
},
"evidence": "ntable}\"] result = subprocess.run(argv, capture_output=True, text=True) if result.returncode == 0: retu",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "python/fxhoudinimcp/uninstall.py",
"line": 163,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-001",
"title": "Dynamic code execution in packaging/dev tooling (houdini/scripts/python/fxhoudinimcp_server/handlers/code_handlers.py)",
"category": "permissions",
"severity": "low",
"confidence": "heuristic",
"description": "In a packaging/dev/install script (shipped, but not the server runtime) (`houdini/scripts/python/fxhoudinimcp_server/handlers/code_handlers.py:104`): 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": "houdini/scripts/python/fxhoudinimcp_server/handlers/code_handlers.py"
},
"evidence": "y: result = eval(return_expression, namespace) # noqa: S307 except Exception: eval_erro",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-001",
"file": "houdini/scripts/python/fxhoudinimcp_server/handlers/code_handlers.py",
"line": 104,
"nonRuntime": true
}
},
{
"ruleId": "MTC-SRC-001",
"title": "Dynamic code execution in packaging/dev tooling (tests/test_menu.py)",
"category": "permissions",
"severity": "low",
"confidence": "heuristic",
"description": "In a packaging/dev/install script (shipped, but not the server runtime) (`tests/test_menu.py:107`): 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/test_menu.py"
},
"evidence": "tartup try: exec(compile(code, item_id, \"exec\"), {}) finally: for name, module in saved.items():",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-001",
"file": "tests/test_menu.py",
"line": 107,
"nonRuntime": true
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in packaging/dev tooling (houdini/scripts/python/fxhoudinimcp_server/handlers/code_handlers.py)",
"category": "permissions",
"severity": "low",
"confidence": "heuristic",
"description": "In a packaging/dev/install script (shipped, but not the server runtime) (`houdini/scripts/python/fxhoudinimcp_server/handlers/code_handlers.py:59`): 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": "houdini/scripts/python/fxhoudinimcp_server/handlers/code_handlers.py"
},
"evidence": "e code is executed via `exec()` in a namespace that has `hou` pre-imported. If *return_expression* is given it is e",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "houdini/scripts/python/fxhoudinimcp_server/handlers/code_handlers.py",
"line": 59,
"nonRuntime": true
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in packaging/dev tooling (houdini/scripts/python/fxhoudinimcp_server/handlers/shelf_handlers.py)",
"category": "permissions",
"severity": "low",
"confidence": "heuristic",
"description": "In a packaging/dev/install script (shipped, but not the server runtime) (`houdini/scripts/python/fxhoudinimcp_server/handlers/shelf_handlers.py:215`): 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": "houdini/scripts/python/fxhoudinimcp_server/handlers/shelf_handlers.py"
},
"evidence": ": hou} try: exec(script, namespace) # noqa: S102 - running SideFX's own tool script except AttributeErr",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "houdini/scripts/python/fxhoudinimcp_server/handlers/shelf_handlers.py",
"line": 215,
"nonRuntime": true
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in packaging/dev tooling (tests/integration/bridge_e2e.py)",
"category": "permissions",
"severity": "low",
"confidence": "heuristic",
"description": "In a packaging/dev/install script (shipped, but not the server runtime) (`tests/integration/bridge_e2e.py:103`): 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/integration/bridge_e2e.py"
},
"evidence": "str(port) server = subprocess.Popen( [str(hython), \"-c\", _SERVER_SNIPPET.format(scripts=scripts)],",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "tests/integration/bridge_e2e.py",
"line": 103,
"nonRuntime": true
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in packaging/dev tooling (tests/run_integration.py)",
"category": "permissions",
"severity": "low",
"confidence": "heuristic",
"description": "In a packaging/dev/install script (shipped, but not the server runtime) (`tests/run_integration.py:183`): 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/run_integration.py"
},
"evidence": "v[1:], ] return subprocess.call(command, env=env, cwd=str(REPO_ROOT)) if __name__ == \"__main__\": sys.exit(",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "tests/run_integration.py",
"line": 183,
"nonRuntime": true
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in packaging/dev tooling (tests/test_menu.py)",
"category": "permissions",
"severity": "low",
"confidence": "heuristic",
"description": "In a packaging/dev/install script (shipped, but not the server runtime) (`tests/test_menu.py:107`): 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/test_menu.py"
},
"evidence": "tartup try: exec(compile(code, item_id, \"exec\"), {}) finally: for name, module in saved.items():",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "tests/test_menu.py",
"line": 107,
"nonRuntime": true
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in packaging/dev tooling (tools/gen_node_versions.py)",
"category": "permissions",
"severity": "low",
"confidence": "heuristic",
"description": "In a packaging/dev/install script (shipped, but not the server runtime) (`tools/gen_node_versions.py:124`): 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": "tools/gen_node_versions.py"
},
"evidence": "ry: completed = subprocess.run( [str(hython), str(_DUMPER)], capture_output=True,",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "tools/gen_node_versions.py",
"line": 124,
"nonRuntime": true
}
}
],
"toxicFlows": [],
"capabilities": [
{
"tool": "set_keyframe",
"tags": [],
"reasons": {}
},
{
"tool": "set_keyframes",
"tags": [],
"reasons": {}
},
{
"tool": "delete_keyframe",
"tags": [],
"reasons": {}
},
{
"tool": "get_keyframes",
"tags": [],
"reasons": {}
},
{
"tool": "set_frame",
"tags": [],
"reasons": {}
},
{
"tool": "get_frame",
"tags": [],
"reasons": {}
},
{
"tool": "set_frame_range",
"tags": [],
"reasons": {}
},
{
"tool": "set_playback_range",
"tags": [],
"reasons": {}
},
{
"tool": "playbar_control",
"tags": [],
"reasons": {}
},
{
"tool": "list_caches",
"tags": [],
"reasons": {}
},
{
"tool": "get_cache_status",
"tags": [],
"reasons": {}
},
{
"tool": "clear_cache",
"tags": [],
"reasons": {}
},
{
"tool": "write_cache",
"tags": [],
"reasons": {}
},
{
"tool": "get_chop_data",
"tags": [],
"reasons": {}
},
{
"tool": "create_chop_node",
"tags": [],
"reasons": {}
},
{
"tool": "list_chop_channels",
"tags": [],
"reasons": {}
},
{
"tool": "export_chop_to_parm",
"tags": [],
"reasons": {}
},
{
"tool": "execute_python",
"tags": [],
"reasons": {}
},
{
"tool": "execute_hscript",
"tags": [],
"reasons": {}
},
{
"tool": "evaluate_expression",
"tags": [],
"reasons": {}
},
{
"tool": "get_env_variable",
"tags": [
"sensitive-source"
],
"reasons": {
"sensitive-source": [
"keyword \"get_env\""
]
}
},
{
"tool": "get_network_overview",
"tags": [],
"reasons": {}
},
{
"tool": "get_cook_chain",
"tags": [],
"reasons": {}
},
{
"tool": "explain_node",
"tags": [],
"reasons": {}
},
{
"tool": "get_selection",
"tags": [],
"reasons": {}
},
{
"tool": "set_selection",
"tags": [],
"reasons": {}
},
{
"tool": "get_scene_summary",
"tags": [],
"reasons": {}
},
{
"tool": "compare_snapshots",
"tags": [],
"reasons": {}
},
{
"tool": "get_node_errors_detailed",
"tags": [],
"reasons": {}
},
{
"tool": "get_cop_info",
"tags": [],
"reasons": {}
},
{
"tool": "get_cop_geometry",
"tags": [],
"reasons": {}
},
{
"tool": "get_cop_layer",
"tags": [],
"reasons": {}
},
{
"tool": "create_cop_node",
"tags": [],
"reasons": {}
},
{
"tool": "set_cop_flags",
"tags": [],
"reasons": {}
},
{
"tool": "list_cop_node_types",
"tags": [],
"reasons": {}
},
{
"tool": "get_cop_vdb",
"tags": [],
"reasons": {}
},
{
"tool": "get_simulation_info",
"tags": [],
"reasons": {}
},
{
"tool": "list_dop_objects",
"tags": [],
"reasons": {}
},
{
"tool": "get_dop_object",
"tags": [],
"reasons": {}
},
{
"tool": "get_dop_field",
"tags": [],
"reasons": {}
},
{
"tool": "get_dop_relationships",
"tags": [],
"reasons": {}
},
{
"tool": "step_simulation",
"tags": [],
"reasons": {}
},
{
"tool": "reset_simulation",
"tags": [],
"reasons": {}
},
{
"tool": "get_sim_memory_usage",
"tags": [],
"reasons": {}
},
{
"tool": "get_geometry_info",
"tags": [],
"reasons": {}
},
{
"tool": "get_points",
"tags": [],
"reasons": {}
},
{
"tool": "get_prims",
"tags": [],
"reasons": {}
},
{
"tool": "get_attrib_values",
"tags": [],
"reasons": {}
},
{
"tool": "set_detail_attrib",
"tags": [],
"reasons": {}
},
{
"tool": "get_groups",
"tags": [],
"reasons": {}
},
{
"tool": "get_group_members",
"tags": [],
"reasons": {}
},
{
"tool": "get_bounding_box",
"tags": [],
"reasons": {}
},
{
"tool": "get_attribute_info",
"tags": [],
"reasons": {}
},
{
"tool": "sample_geometry",
"tags": [],
"reasons": {}
},
{
"tool": "get_prim_intrinsics",
"tags": [],
"reasons": {}
},
{
"tool": "find_nearest_point",
"tags": [],
"reasons": {}
},
{
"tool": "get_attrib_stats",
"tags": [],
"reasons": {}
},
{
"tool": "get_volume_info",
"tags": [],
"reasons": {}
},
{
"tool": "build_network",
"tags": [],
"reasons": {}
},
{
"tool": "verify_network",
"tags": [],
"reasons": {}
},
{
"tool": "get_node_card",
"tags": [],
"reasons": {}
},
{
"tool": "find_expensive_nodes",
"tags": [],
"reasons": {}
},
{
"tool": "cook_frame_range",
"tags": [],
"reasons": {}
},
{
"tool": "get_cook_status",
"tags": [],
"reasons": {}
},
{
"tool": "list_installed_hdas",
"tags": [],
"reasons": {}
},
{
"tool": "get_hda_info",
"tags": [],
"reasons": {}
},
{
"tool": "install_hda",
"tags": [],
"reasons": {}
},
{
"tool": "uninstall_hda",
"tags": [],
"reasons": {}
},
{
"tool": "reload_hda",
"tags": [],
"reasons": {}
},
{
"tool": "create_hda",
"tags": [],
"reasons": {}
},
{
"tool": "update_hda",
"tags": [],
"reasons": {}
},
{
"tool": "get_hda_sections",
"tags": [],
"reasons": {}
},
{
"tool": "get_hda_section_content",
"tags": [],
"reasons": {}
},
{
"tool": "set_hda_section_content",
"tags": [],
"reasons": {}
},
{
"tool": "search_help",
"tags": [],
"reasons": {}
},
{
"tool": "get_help_page",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
]
}
},
{
"tool": "get_stage_info",
"tags": [],
"reasons": {}
},
{
"tool": "get_usd_prim",
"tags": [],
"reasons": {}
},
{
"tool": "list_usd_prims",
"tags": [],
"reasons": {}
},
{
"tool": "get_usd_attribute",
"tags": [],
"reasons": {}
},
{
"tool": "get_usd_layers",
"tags": [],
"reasons": {}
},
{
"tool": "get_usd_prim_stats",
"tags": [],
"reasons": {}
},
{
"tool": "get_last_modified_prims",
"tags": [],
"reasons": {}
},
{
"tool": "create_lop_node",
"tags": [],
"reasons": {}
},
{
"tool": "set_usd_attribute",
"tags": [],
"reasons": {}
},
{
"tool": "get_usd_materials",
"tags": [],
"reasons": {}
},
{
"tool": "find_usd_prims",
"tags": [],
"reasons": {}
},
{
"tool": "get_usd_composition",
"tags": [],
"reasons": {}
},
{
"tool": "get_usd_variants",
"tags": [],
"reasons": {}
},
{
"tool": "inspect_usd_layer",
"tags": [],
"reasons": {}
},
{
"tool": "create_light",
"tags": [],
"reasons": {}
},
{
"tool": "list_lights",
"tags": [],
"reasons": {}
},
{
"tool": "set_light_properties",
"tags": [],
"reasons": {}
},
{
"tool": "create_light_rig",
"tags": [],
"reasons": {}
},
{
"tool": "list_materials",
"tags": [],
"reasons": {}
},
{
"tool": "get_material_info",
"tags": [],
"reasons": {}
},
{
"tool": "create_material_network",
"tags": [],
"reasons": {}
},
{
"tool": "list_material_types",
"tags": [],
"reasons": {}
},
{
"tool": "create_node",
"tags": [],
"reasons": {}
},
{
"tool": "delete_node",
"tags": [],
"reasons": {}
},
{
"tool": "rename_node",
"tags": [],
"reasons": {}
},
{
"tool": "copy_node",
"tags": [],
"reasons": {}
},
{
"tool": "move_node",
"tags": [],
"reasons": {}
},
{
"tool": "get_node_info",
"tags": [],
"reasons": {}
},
{
"tool": "list_children",
"tags": [],
"reasons": {}
},
{
"tool": "find_nodes",
"tags": [],
"reasons": {}
},
{
"tool": "list_node_types",
"tags": [],
"reasons": {}
},
{
"tool": "connect_nodes",
"tags": [],
"reasons": {}
},
{
"tool": "connect_nodes_batch",
"tags": [],
"reasons": {}
},
{
"tool": "disconnect_node",
"tags": [],
"reasons": {}
},
{
"tool": "reorder_inputs",
"tags": [],
"reasons": {}
},
{
"tool": "set_node_flags",
"tags": [],
"reasons": {}
},
{
"tool": "layout_children",
"tags": [],
"reasons": {}
},
{
"tool": "set_node_position",
"tags": [],
"reasons": {}
},
{
"tool": "set_node_color",
"tags": [],
"reasons": {}
},
{
"tool": "get_parameter",
"tags": [],
"reasons": {}
},
{
"tool": "set_parameter",
"tags": [],
"reasons": {}
},
{
"tool": "set_parameters",
"tags": [],
"reasons": {}
},
{
"tool": "get_parameter_schema",
"tags": [],
"reasons": {}
},
{
"tool": "set_expression",
"tags": [],
"reasons": {}
},
{
"tool": "get_expression",
"tags": [],
"reasons": {}
},
{
"tool": "revert_parameter",
"tags": [],
"reasons": {}
},
{
"tool": "link_parameters",
"tags": [],
"reasons": {}
},
{
"tool": "lock_parameter",
"tags": [],
"reasons": {}
},
{
"tool": "create_spare_parameter",
"tags": [],
"reasons": {}
},
{
"tool": "create_spare_parameters",
"tags": [],
"reasons": {}
},
{
"tool": "get_parameters",
"tags": [],
"reasons": {}
},
{
"tool": "render_viewport",
"tags": [],
"reasons": {}
},
{
"tool": "render_quad_view",
"tags": [],
"reasons": {}
},
{
"tool": "list_render_nodes",
"tags": [],
"reasons": {}
},
{
"tool": "get_render_settings",
"tags": [],
"reasons": {}
},
{
"tool": "set_render_settings",
"tags": [],
"reasons": {}
},
{
"tool": "create_render_node",
"tags": [],
"reasons": {}
},
{
"tool": "start_render",
"tags": [],
"reasons": {}
},
{
"tool": "render_node_network",
"tags": [],
"reasons": {}
},
{
"tool": "get_render_progress",
"tags": [],
"reasons": {}
},
{
"tool": "get_houdini_connection_status",
"tags": [],
"reasons": {}
},
{
"tool": "get_scene_info",
"tags": [],
"reasons": {}
},
{
"tool": "new_scene",
"tags": [],
"reasons": {}
},
{
"tool": "save_scene",
"tags": [],
"reasons": {}
},
{
"tool": "load_scene",
"tags": [],
"reasons": {}
},
{
"tool": "import_file",
"tags": [],
"reasons": {}
},
{
"tool": "export_file",
"tags": [],
"reasons": {}
},
{
"tool": "get_context_info",
"tags": [],
"reasons": {}
},
{
"tool": "list_shelf_tools",
"tags": [],
"reasons": {}
},
{
"tool": "get_shelf_tool_script",
"tags": [],
"reasons": {}
},
{
"tool": "run_shelf_tool",
"tags": [],
"reasons": {}
},
{
"tool": "list_takes",
"tags": [],
"reasons": {}
},
{
"tool": "get_current_take",
"tags": [],
"reasons": {}
},
{
"tool": "set_current_take",
"tags": [],
"reasons": {}
},
{
"tool": "create_take",
"tags": [],
"reasons": {}
},
{
"tool": "get_top_network_info",
"tags": [],
"reasons": {}
},
{
"tool": "cook_top_node",
"tags": [],
"reasons": {}
},
{
"tool": "cancel_top_cook",
"tags": [],
"reasons": {}
},
{
"tool": "pause_top_cook",
"tags": [],
"reasons": {}
},
{
"tool": "dirty_work_items",
"tags": [],
"reasons": {}
},
{
"tool": "get_work_item_states",
"tags": [],
"reasons": {}
},
{
"tool": "get_work_item_info",
"tags": [],
"reasons": {}
},
{
"tool": "get_pdg_graph",
"tags": [],
"reasons": {}
},
{
"tool": "generate_static_items",
"tags": [],
"reasons": {}
},
{
"tool": "get_top_scheduler_info",
"tags": [],
"reasons": {}
},
{
"tool": "create_wrangle",
"tags": [],
"reasons": {}
},
{
"tool": "set_wrangle_code",
"tags": [],
"reasons": {}
},
{
"tool": "get_wrangle_code",
"tags": [],
"reasons": {}
},
{
"tool": "create_vex_expression",
"tags": [],
"reasons": {}
},
{
"tool": "validate_vex",
"tags": [],
"reasons": {}
},
{
"tool": "list_panes",
"tags": [],
"reasons": {}
},
{
"tool": "get_viewport_info",
"tags": [],
"reasons": {}
},
{
"tool": "set_viewport_camera",
"tags": [],
"reasons": {}
},
{
"tool": "set_viewport_display",
"tags": [],
"reasons": {}
},
{
"tool": "set_viewport_renderer",
"tags": [],
"reasons": {}
},
{
"tool": "frame_selection",
"tags": [],
"reasons": {}
},
{
"tool": "frame_all",
"tags": [],
"reasons": {}
},
{
"tool": "set_viewport_direction",
"tags": [],
"reasons": {}
},
{
"tool": "capture_screenshot",
"tags": [],
"reasons": {}
},
{
"tool": "capture_network_editor",
"tags": [],
"reasons": {}
},
{
"tool": "set_current_network",
"tags": [],
"reasons": {}
},
{
"tool": "find_error_nodes",
"tags": [],
"reasons": {}
},
{
"tool": "log_status",
"tags": [],
"reasons": {}
},
{
"tool": "set_viewer_context",
"tags": [],
"reasons": {}
},
{
"tool": "setup_pyro_sim",
"tags": [],
"reasons": {}
},
{
"tool": "setup_rbd_sim",
"tags": [],
"reasons": {}
},
{
"tool": "setup_flip_sim",
"tags": [],
"reasons": {}
},
{
"tool": "setup_vellum_sim",
"tags": [],
"reasons": {}
},
{
"tool": "create_material",
"tags": [],
"reasons": {}
},
{
"tool": "assign_material",
"tags": [],
"reasons": {}
},
{
"tool": "build_sop_chain",
"tags": [],
"reasons": {}
},
{
"tool": "setup_render",
"tags": [],
"reasons": {}
}
],
"surfaceDigest": "2a3d295e6df8a29c4a6fc3d9cc9cbb22fcb807d1a0ccbc470795c469811afe0a",
"stats": {
"tools": 188,
"prompts": 0,
"resources": 0,
"findingsBySeverity": {
"critical": 0,
"high": 2,
"medium": 0,
"low": 8,
"info": 0
}
}
}