Kiln3d — 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": "kiln3d",
"source": {
"kind": "package",
"origin": "kiln3d"
},
"server": {
"name": "kiln3d"
}
},
"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": [
"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 (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-SRC-002",
"title": "Shell/command execution in server code (src/kiln/bridge_supervisor.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/kiln/bridge_supervisor.py:179`): 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/kiln/bridge_supervisor.py"
},
"evidence": "clock() child = spawn() on_child(child) logger.info(\"bridge supervisor: bridge running (pid %s)\"",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "src/kiln/bridge_supervisor.py",
"line": 179,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (src/kiln/cli/bridge_commands.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/kiln/cli/bridge_commands.py:453`): 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/kiln/cli/bridge_commands.py"
},
"evidence": "| 0x00000200 proc = subprocess.Popen( [sys.executable, \"-m\", \"kiln.bridge_supervisor\"], **kwargs ) r",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "src/kiln/cli/bridge_commands.py",
"line": 453,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (src/kiln/cli/install_openscad.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/kiln/cli/install_openscad.py:66`): 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/kiln/cli/install_openscad.py"
},
"evidence": "try: res = subprocess.run(cmd, capture_output=True, text=True, timeout=900) except FileNotFoundError:",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "src/kiln/cli/install_openscad.py",
"line": 66,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (src/kiln/cli/install_step_backend.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/kiln/cli/install_step_backend.py:65`): 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/kiln/cli/install_step_backend.py"
},
"evidence": "try: res = subprocess.run(cmd, capture_output=True, text=True, timeout=1800) except FileNotFoundError:",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "src/kiln/cli/install_step_backend.py",
"line": 65,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (src/kiln/cli/main.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/kiln/cli/main.py:336`): 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/kiln/cli/main.py"
},
"evidence": "h) result = subprocess.run(cmd, shell=True, capture_output=True, text=True, timeout=20) if resul",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "src/kiln/cli/main.py",
"line": 336,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (src/kiln/credential_store.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/kiln/credential_store.py:202`): 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/kiln/credential_store.py"
},
"evidence": "\") output = subprocess.check_output(parts, text=True, stderr=subprocess.STDOUT) key = output.str",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "src/kiln/credential_store.py",
"line": 202,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (src/kiln/device.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/kiln/device.py:94`): 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/kiln/device.py"
},
"evidence": "try: result = subprocess.run( [\"ioreg\", \"-d2\", \"-c\", \"IOPlatformExpertDevice\"], captur",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "src/kiln/device.py",
"line": 94,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (src/kiln/image_to_surface.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/kiln/image_to_surface.py:288`): 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/kiln/image_to_surface.py"
},
"evidence": "try: subprocess.run( [\"sips\", \"-s\", \"format\", \"png\", abs_path, \"--out\", tmp_png],",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "src/kiln/image_to_surface.py",
"line": 288,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (src/kiln/openscad_runner.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/kiln/openscad_runner.py:195`): 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/kiln/openscad_runner.py"
},
"evidence": "A drop-in for the ``subprocess.run(cmd, capture_output=True, ...)`` every call site used to make. Output is alw",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "src/kiln/openscad_runner.py",
"line": 195,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (src/kiln/printers/bambu.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/kiln/printers/bambu.py:4192`): 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/kiln/printers/bambu.py"
},
"evidence": "y: result = subprocess.run( [ ffmpeg, \"-y\", \"-rtsp_t",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "src/kiln/printers/bambu.py",
"line": 4192,
"nonRuntime": false
}
}
],
"toxicFlows": [],
"capabilities": [
{
"tool": "kiln_viewer_payload",
"tags": [],
"reasons": {}
},
{
"tool": "stage_smoke_test",
"tags": [],
"reasons": {}
},
{
"tool": "my_tool",
"tags": [],
"reasons": {}
},
{
"tool": "create_assembly",
"tags": [],
"reasons": {}
},
{
"tool": "add_assembly_part",
"tags": [],
"reasons": {}
},
{
"tool": "add_assembly_interface",
"tags": [],
"reasons": {}
},
{
"tool": "validate_assembly",
"tags": [],
"reasons": {}
},
{
"tool": "check_assembly_clearances",
"tags": [],
"reasons": {}
},
{
"tool": "compose_assembly_parts",
"tags": [],
"reasons": {}
},
{
"tool": "get_joint_recommendation",
"tags": [],
"reasons": {}
},
{
"tool": "kiln_signin",
"tags": [],
"reasons": {}
},
{
"tool": "kiln_signin_poll",
"tags": [],
"reasons": {}
},
{
"tool": "cache_model",
"tags": [],
"reasons": {}
},
{
"tool": "search_cached_models",
"tags": [],
"reasons": {}
},
{
"tool": "get_cached_model",
"tags": [],
"reasons": {}
},
{
"tool": "list_cached_models",
"tags": [],
"reasons": {}
},
{
"tool": "delete_cached_model",
"tags": [],
"reasons": {}
},
{
"tool": "cache_design",
"tags": [],
"reasons": {}
},
{
"tool": "list_cached_designs",
"tags": [],
"reasons": {}
},
{
"tool": "get_cached_design",
"tags": [],
"reasons": {}
},
{
"tool": "auto_color_by_height",
"tags": [],
"reasons": {}
},
{
"tool": "auto_color_by_region",
"tags": [],
"reasons": {}
},
{
"tool": "tax_estimate",
"tags": [],
"reasons": {}
},
{
"tool": "tax_jurisdictions",
"tags": [],
"reasons": {}
},
{
"tool": "tax_jurisdiction_lookup",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"browse\""
]
}
},
{
"tool": "donate_info",
"tags": [],
"reasons": {}
},
{
"tool": "consumer_onboarding",
"tags": [],
"reasons": {}
},
{
"tool": "validate_shipping_address",
"tags": [],
"reasons": {}
},
{
"tool": "suggest_material_for_order",
"tags": [],
"reasons": {}
},
{
"tool": "estimate_price",
"tags": [],
"reasons": {}
},
{
"tool": "estimate_timeline",
"tags": [],
"reasons": {}
},
{
"tool": "supported_shipping_countries",
"tags": [],
"reasons": {}
},
{
"tool": "store_credential",
"tags": [],
"reasons": {}
},
{
"tool": "list_credentials",
"tags": [],
"reasons": {}
},
{
"tool": "retrieve_credential",
"tags": [],
"reasons": {}
},
{
"tool": "save_decoration",
"tags": [],
"reasons": {}
},
{
"tool": "list_decorations",
"tags": [],
"reasons": {}
},
{
"tool": "apply_decoration",
"tags": [],
"reasons": {}
},
{
"tool": "decoration_info",
"tags": [],
"reasons": {}
},
{
"tool": "decoration_quota_status",
"tags": [],
"reasons": {}
},
{
"tool": "analyze_structural_risks",
"tags": [],
"reasons": {}
},
{
"tool": "recommend_design_reinforcements",
"tags": [],
"reasons": {}
},
{
"tool": "assess_load_bearing",
"tags": [],
"reasons": {}
},
{
"tool": "design_improvement_plan",
"tags": [],
"reasons": {}
},
{
"tool": "apply_design_reinforcements",
"tags": [],
"reasons": {}
},
{
"tool": "infer_print_settings",
"tags": [],
"reasons": {}
},
{
"tool": "design_advisor",
"tags": [],
"reasons": {}
},
{
"tool": "arrange_parts_on_plate",
"tags": [],
"reasons": {}
},
{
"tool": "auto_arrange_parts_on_plate",
"tags": [],
"reasons": {}
},
{
"tool": "optimize_template_params",
"tags": [],
"reasons": {}
},
{
"tool": "solve_template_constraints",
"tags": [],
"reasons": {}
},
{
"tool": "iterate_design",
"tags": [],
"reasons": {}
},
{
"tool": "optimize_print_orientation",
"tags": [],
"reasons": {}
},
{
"tool": "check_print_readiness",
"tags": [],
"reasons": {}
},
{
"tool": "estimate_support_material",
"tags": [],
"reasons": {}
},
{
"tool": "rebuild_design",
"tags": [],
"reasons": {}
},
{
"tool": "analyze_design_requirements",
"tags": [],
"reasons": {}
},
{
"tool": "build_generation_prompt",
"tags": [],
"reasons": {}
},
{
"tool": "audit_original_design",
"tags": [],
"reasons": {}
},
{
"tool": "get_material_design_profile",
"tags": [],
"reasons": {}
},
{
"tool": "list_design_materials",
"tags": [],
"reasons": {}
},
{
"tool": "recommend_design_material",
"tags": [],
"reasons": {}
},
{
"tool": "estimate_structural_load",
"tags": [],
"reasons": {}
},
{
"tool": "check_material_environment",
"tags": [],
"reasons": {}
},
{
"tool": "get_design_template_info",
"tags": [],
"reasons": {}
},
{
"tool": "list_design_templates_catalog",
"tags": [],
"reasons": {}
},
{
"tool": "find_design_templates",
"tags": [],
"reasons": {}
},
{
"tool": "match_design_requirements",
"tags": [],
"reasons": {}
},
{
"tool": "validate_design_for_requirements",
"tags": [],
"reasons": {}
},
{
"tool": "troubleshoot_print_issue",
"tags": [],
"reasons": {}
},
{
"tool": "check_printer_material_compatibility",
"tags": [],
"reasons": {}
},
{
"tool": "get_post_processing_guide",
"tags": [],
"reasons": {}
},
{
"tool": "check_multi_material_pairing",
"tags": [],
"reasons": {}
},
{
"tool": "get_print_diagnostic",
"tags": [],
"reasons": {}
},
{
"tool": "estimate_print_cost_from_mesh",
"tags": [],
"reasons": {}
},
{
"tool": "build_parametric_prompt",
"tags": [],
"reasons": {}
},
{
"tool": "parse_scad_parameters",
"tags": [],
"reasons": {}
},
{
"tool": "update_scad_parameter",
"tags": [],
"reasons": {}
},
{
"tool": "validate_scad_parameters",
"tags": [],
"reasons": {}
},
{
"tool": "list_design_components",
"tags": [],
"reasons": {}
},
{
"tool": "match_design_components",
"tags": [],
"reasons": {}
},
{
"tool": "compile_scad",
"tags": [],
"reasons": {}
},
{
"tool": "tweak_and_compile_scad",
"tags": [],
"reasons": {}
},
{
"tool": "analyze_scad_code",
"tags": [],
"reasons": {}
},
{
"tool": "modify_scad_module",
"tags": [],
"reasons": {}
},
{
"tool": "insert_into_scad",
"tags": [],
"reasons": {}
},
{
"tool": "cache_design_with_source",
"tags": [],
"reasons": {}
},
{
"tool": "get_design_source",
"tags": [],
"reasons": {}
},
{
"tool": "analyze_warping_risk",
"tags": [],
"reasons": {}
},
{
"tool": "resolve_filament_profile",
"tags": [],
"reasons": {}
},
{
"tool": "slice_and_estimate",
"tags": [],
"reasons": {}
},
{
"tool": "estimate_cost",
"tags": [],
"reasons": {}
},
{
"tool": "estimate_print_time",
"tags": [],
"reasons": {}
},
{
"tool": "estimate_material_cost",
"tags": [],
"reasons": {}
},
{
"tool": "estimate_print_progress",
"tags": [],
"reasons": {}
},
{
"tool": "estimate_before_design",
"tags": [],
"reasons": {}
},
{
"tool": "list_multi_material_addons",
"tags": [],
"reasons": {}
},
{
"tool": "firmware_status",
"tags": [],
"reasons": {}
},
{
"tool": "check_firmware_status",
"tags": [],
"reasons": {}
},
{
"tool": "update_printer_firmware",
"tags": [],
"reasons": {}
},
{
"tool": "rollback_printer_firmware",
"tags": [],
"reasons": {}
},
{
"tool": "fulfillment_materials",
"tags": [],
"reasons": {}
},
{
"tool": "fulfillment_quote",
"tags": [],
"reasons": {}
},
{
"tool": "save_shipping_profile",
"tags": [],
"reasons": {}
},
{
"tool": "list_shipping_profiles",
"tags": [],
"reasons": {}
},
{
"tool": "delete_shipping_profile",
"tags": [],
"reasons": {}
},
{
"tool": "issue_shipping_confirmation_token",
"tags": [],
"reasons": {}
},
{
"tool": "fulfillment_order",
"tags": [],
"reasons": {}
},
{
"tool": "fulfillment_order_status",
"tags": [],
"reasons": {}
},
{
"tool": "fulfillment_cancel",
"tags": [],
"reasons": {}
},
{
"tool": "fulfillment_alerts",
"tags": [],
"reasons": {}
},
{
"tool": "validate_gcode",
"tags": [],
"reasons": {}
},
{
"tool": "validate_gcode_safe",
"tags": [],
"reasons": {}
},
{
"tool": "validate_print_quality",
"tags": [],
"reasons": {}
},
{
"tool": "list_generation_providers",
"tags": [],
"reasons": {}
},
{
"tool": "generate_model",
"tags": [],
"reasons": {}
},
{
"tool": "generate_model_from_image",
"tags": [],
"reasons": {}
},
{
"tool": "generation_status",
"tags": [],
"reasons": {}
},
{
"tool": "download_generated_model",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"download\""
]
}
},
{
"tool": "await_generation",
"tags": [],
"reasons": {}
},
{
"tool": "generate_and_print",
"tags": [],
"reasons": {}
},
{
"tool": "smart_generate_from_template",
"tags": [],
"reasons": {}
},
{
"tool": "generate_template_variations",
"tags": [],
"reasons": {}
},
{
"tool": "generate_model_with_provider",
"tags": [],
"reasons": {}
},
{
"tool": "preview_generated_model",
"tags": [],
"reasons": {}
},
{
"tool": "validate_and_prepare_mesh",
"tags": [],
"reasons": {}
},
{
"tool": "generate_texture",
"tags": [],
"reasons": {}
},
{
"tool": "fingerprint_model",
"tags": [],
"reasons": {}
},
{
"tool": "record_print_dna",
"tags": [],
"reasons": {}
},
{
"tool": "predict_print_settings",
"tags": [],
"reasons": {}
},
{
"tool": "find_similar_prints",
"tags": [],
"reasons": {}
},
{
"tool": "get_model_print_history",
"tags": [],
"reasons": {}
},
{
"tool": "contribute_community_print",
"tags": [],
"reasons": {}
},
{
"tool": "get_community_insight",
"tags": [],
"reasons": {}
},
{
"tool": "community_stats",
"tags": [],
"reasons": {}
},
{
"tool": "recommend_material",
"tags": [],
"reasons": {}
},
{
"tool": "list_available_materials",
"tags": [],
"reasons": {}
},
{
"tool": "get_printer_insights",
"tags": [],
"reasons": {}
},
{
"tool": "suggest_printer_for_job",
"tags": [],
"reasons": {}
},
{
"tool": "delete_agent_note",
"tags": [],
"reasons": {}
},
{
"tool": "search_all_models",
"tags": [],
"reasons": {}
},
{
"tool": "search_models",
"tags": [],
"reasons": {}
},
{
"tool": "model_details",
"tags": [],
"reasons": {}
},
{
"tool": "model_files",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"download\""
]
}
},
{
"tool": "download_model",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"download\""
]
}
},
{
"tool": "browse_models",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"browse\""
]
}
},
{
"tool": "list_model_categories",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"browse\""
]
}
},
{
"tool": "marketplace_status",
"tags": [],
"reasons": {}
},
{
"tool": "marketplace_diagnostics",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"download\""
]
}
},
{
"tool": "search_material_catalog",
"tags": [],
"reasons": {}
},
{
"tool": "get_material_info",
"tags": [],
"reasons": {}
},
{
"tool": "list_material_catalog",
"tags": [],
"reasons": {}
},
{
"tool": "get_compatible_materials",
"tags": [],
"reasons": {}
},
{
"tool": "get_material_purchase_urls",
"tags": [],
"reasons": {}
},
{
"tool": "find_material_match",
"tags": [],
"reasons": {}
},
{
"tool": "get_fleet_material_summary",
"tags": [],
"reasons": {}
},
{
"tool": "get_material_consumption_history",
"tags": [],
"reasons": {}
},
{
"tool": "forecast_material_consumption",
"tags": [],
"reasons": {}
},
{
"tool": "check_material_sufficiency",
"tags": [],
"reasons": {}
},
{
"tool": "get_restock_suggestions",
"tags": [],
"reasons": {}
},
{
"tool": "find_printers_with_material",
"tags": [],
"reasons": {}
},
{
"tool": "optimize_fleet_assignment",
"tags": [],
"reasons": {}
},
{
"tool": "suggest_spool_swaps",
"tags": [],
"reasons": {}
},
{
"tool": "get_active_material",
"tags": [],
"reasons": {}
},
{
"tool": "check_print_health",
"tags": [],
"reasons": {}
},
{
"tool": "diagnose_mesh",
"tags": [],
"reasons": {}
},
{
"tool": "validate_generated_mesh",
"tags": [],
"reasons": {}
},
{
"tool": "rescale_model",
"tags": [],
"reasons": {}
},
{
"tool": "analyze_mesh_geometry",
"tags": [],
"reasons": {}
},
{
"tool": "detect_mesh_pockets",
"tags": [],
"reasons": {}
},
{
"tool": "analyze_non_manifold_edges",
"tags": [],
"reasons": {}
},
{
"tool": "cross_section_view",
"tags": [],
"reasons": {}
},
{
"tool": "mesh_quality_scorecard",
"tags": [],
"reasons": {}
},
{
"tool": "compare_mesh_versions",
"tags": [],
"reasons": {}
},
{
"tool": "repair_mesh",
"tags": [],
"reasons": {}
},
{
"tool": "repair_mesh_advanced",
"tags": [],
"reasons": {}
},
{
"tool": "splice_mesh_at_z",
"tags": [],
"reasons": {}
},
{
"tool": "mirror_mesh_model",
"tags": [],
"reasons": {}
},
{
"tool": "hollow_mesh_model",
"tags": [],
"reasons": {}
},
{
"tool": "thicken_mesh_walls",
"tags": [],
"reasons": {}
},
{
"tool": "add_mesh_fillet",
"tags": [],
"reasons": {}
},
{
"tool": "add_mesh_chamfer",
"tags": [],
"reasons": {}
},
{
"tool": "scale_mesh_to_fit",
"tags": [],
"reasons": {}
},
{
"tool": "center_model_on_bed",
"tags": [],
"reasons": {}
},
{
"tool": "compose_models",
"tags": [],
"reasons": {}
},
{
"tool": "merge_mesh_files",
"tags": [],
"reasons": {}
},
{
"tool": "boolean_mesh_op",
"tags": [],
"reasons": {}
},
{
"tool": "compose_part_from_primitives",
"tags": [],
"reasons": {}
},
{
"tool": "split_mesh_by_component",
"tags": [],
"reasons": {}
},
{
"tool": "remove_mesh_floating_regions",
"tags": [],
"reasons": {}
},
{
"tool": "simplify_mesh_model",
"tags": [],
"reasons": {}
},
{
"tool": "export_model_3mf",
"tags": [],
"reasons": {}
},
{
"tool": "extract_model_from_3mf",
"tags": [],
"reasons": {}
},
{
"tool": "estimate_mesh_weight",
"tags": [],
"reasons": {}
},
{
"tool": "estimate_mesh_print_time",
"tags": [],
"reasons": {}
},
{
"tool": "publish_print_twin",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
]
}
},
{
"tool": "monitor_print_vision",
"tags": [],
"reasons": {}
},
{
"tool": "watch_print",
"tags": [],
"reasons": {}
},
{
"tool": "watch_print_status",
"tags": [],
"reasons": {}
},
{
"tool": "stop_watch_print",
"tags": [],
"reasons": {}
}
],
"surfaceDigest": "d8a425fbb713466a031f19c7f67540b32fda34ac71a0709d9e6be46fb4e8e6f2",
"stats": {
"tools": 200,
"prompts": 0,
"resources": 0,
"findingsBySeverity": {
"critical": 0,
"high": 10,
"medium": 0,
"low": 0,
"info": 0
}
}
}