Raw scan report

Kiln3d — the complete, unedited output of the deterministic mcptrustchecker engine v1.8.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.8.0",
    "methodologyVersion": "mcptrustchecker-1.8"
  },
  "target": {
    "id": "kiln3d",
    "source": {
      "kind": "package",
      "origin": "kiln3d"
    },
    "server": {
      "name": "kiln3d"
    }
  },
  "grade": "B",
  "score": {
    "score": 89,
    "threatScore": 100,
    "grade": "B",
    "band": "B",
    "categorySubtotals": {
      "injection": 0,
      "exfiltration": 0,
      "permissions": 0,
      "supply-chain": 0,
      "network": 0,
      "hygiene": 0
    },
    "vector": [
      {
        "kind": "client",
        "term": "capability-exposure",
        "level": "critical",
        "label": "capability blast radius (critical) — client exposure if the model is manipulated",
        "appliedPenalty": 10
      },
      {
        "kind": "client",
        "term": "verification-discount",
        "level": "repo",
        "label": "publisher verification (public source) — no provenance, but the source is public and inspectable",
        "appliedPenalty": 1
      },
      {
        "kind": "client",
        "term": "coverage-honesty",
        "level": "source",
        "label": "inspection depth (source) — how much of the target the scan could see",
        "appliedPenalty": 0
      }
    ],
    "gatesFired": [],
    "methodologyVersion": "mcptrustchecker-1.8"
  },
  "capability": {
    "level": "critical",
    "reasons": [
      "ingests untrusted external content (a prompt-injection entry point)",
      "can send data / act on an external service",
      "reads sensitive or local data",
      "has a read → egress path (a data-exfiltration surface)",
      "can execute shell commands or code",
      "untrusted input can reach code execution"
    ],
    "tags": [
      "untrusted-input",
      "external-sink",
      "sensitive-source",
      "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-006",
      "title": "Reads a sensitive credential path or dumps the environment (src/kiln/plugins/marketplace_tools.py)",
      "category": "exfiltration",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`src/kiln/plugins/marketplace_tools.py:324`): Reading private keys / cloud credentials, or serializing the whole environment, is a sensitive-data source that becomes exfiltration when combined with any egress. 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/plugins/marketplace_tools.py"
      },
      "evidence": "~/.ssh",
      "owasp": "LLM02:2025 Sensitive Information Disclosure",
      "data": {
        "rule": "MTC-SRC-006",
        "file": "src/kiln/plugins/marketplace_tools.py",
        "line": 324
      }
    },
    {
      "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:254`): 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": "subprocess.Popen(",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "src/kiln/cli/bridge_commands.py",
        "line": 254
      }
    },
    {
      "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": "subprocess.run(",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "src/kiln/cli/install_openscad.py",
        "line": 66
      }
    },
    {
      "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": "subprocess.run(",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "src/kiln/cli/main.py",
        "line": 336
      }
    },
    {
      "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": "subprocess.check_output(",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "src/kiln/credential_store.py",
        "line": 202
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (src/kiln/decoration_helpers.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`src/kiln/decoration_helpers.py:169`): 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/decoration_helpers.py"
      },
      "evidence": "subprocess.run(",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "src/kiln/decoration_helpers.py",
        "line": 169
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (src/kiln/design_reasoning.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`src/kiln/design_reasoning.py:1909`): 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/design_reasoning.py"
      },
      "evidence": "subprocess.run(",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "src/kiln/design_reasoning.py",
        "line": 1909
      }
    },
    {
      "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": "subprocess.run(",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "src/kiln/device.py",
        "line": 94
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (src/kiln/emboss_generator.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`src/kiln/emboss_generator.py:70`): 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/emboss_generator.py"
      },
      "evidence": "subprocess.run(",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "src/kiln/emboss_generator.py",
        "line": 70
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (src/kiln/generation/gemini.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`src/kiln/generation/gemini.py:1078`): 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/generation/gemini.py"
      },
      "evidence": "subprocess.run(",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "src/kiln/generation/gemini.py",
        "line": 1078
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (src/kiln/generation/openscad.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`src/kiln/generation/openscad.py:137`): 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/generation/openscad.py"
      },
      "evidence": "subprocess.run(",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "src/kiln/generation/openscad.py",
        "line": 137
      }
    },
    {
      "ruleId": "MTC-FLOW-005",
      "title": "Untrusted input can drive an external action",
      "category": "exfiltration",
      "severity": "medium",
      "confidence": "strong",
      "description": "Untrusted-input tools ([tax_jurisdiction_lookup, download_generated_model, model_files, download_model, browse_models, list_model_categories, marketplace_diagnostics]) co-exist with external-action tools ([analyze_warping_risk]). 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": "tax_jurisdiction_lookup → analyze_warping_risk"
      },
      "evidence": "untrusted [tax_jurisdiction_lookup, download_generated_model, model_files, download_model, browse_models, list_model_categories, marketplace_diagnostics] → sink",
      "owasp": "LLM06:2025 Excessive Agency",
      "references": [],
      "data": {
        "untrusted": [
          "tax_jurisdiction_lookup",
          "download_generated_model",
          "model_files",
          "download_model",
          "browse_models",
          "list_model_categories",
          "marketplace_diagnostics"
        ],
        "sinks": [
          "analyze_warping_risk"
        ]
      }
    }
  ],
  "toxicFlows": [
    {
      "id": "flow-1",
      "severity": "medium",
      "confidence": "strong",
      "untrustedInput": [
        "tax_jurisdiction_lookup",
        "download_generated_model",
        "model_files",
        "download_model",
        "browse_models",
        "list_model_categories",
        "marketplace_diagnostics"
      ],
      "sensitiveSource": [],
      "externalSink": [
        "analyze_warping_risk"
      ],
      "selfContained": false,
      "description": "Untrusted input can drive an external action even though no sensitive source is exposed."
    }
  ],
  "capabilities": [
    {
      "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": "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_printer_design_capabilities",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_printer_design_profiles",
      "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": [
        "external-sink"
      ],
      "reasons": {
        "external-sink": [
          "keyword \"curl\""
        ]
      }
    },
    {
      "tool": "get_brand_filament_profile",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_brand_filament_profiles",
      "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": "monitor_print_vision",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "watch_print",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "watch_print_status",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "stop_watch_print",
      "tags": [],
      "reasons": {}
    }
  ],
  "surfaceDigest": "18c90085bf5ebff5d7815961df8912dbb8642701c21312dae3e5fe599c0790e4",
  "stats": {
    "tools": 200,
    "prompts": 0,
    "resources": 0,
    "findingsBySeverity": {
      "critical": 0,
      "high": 11,
      "medium": 1,
      "low": 0,
      "info": 0
    }
  }
}