Bambu Printer — 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": "bambu-printer-mcp",
"source": {
"kind": "package",
"origin": "bambu-printer-mcp"
},
"server": {
"name": "bambu-printer-mcp"
}
},
"grade": "A",
"score": {
"score": 93,
"threatScore": 99,
"grade": "A",
"band": "A",
"categorySubtotals": {
"injection": 0,
"exfiltration": 0,
"permissions": 0,
"supply-chain": 1.2,
"network": 0,
"hygiene": 0
},
"vector": [
{
"kind": "threat",
"ruleId": "MTC-SUP-010",
"category": "supply-chain",
"severity": "low",
"confidence": "heuristic",
"rawWeight": 3,
"confidenceMult": 0.4,
"diminishingFactor": 1,
"appliedPenalty": 1.2
},
{
"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": "source",
"label": "publisher verification (provenance) — cryptographic build provenance ties the artifact to its source",
"appliedPenalty": 0
},
{
"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 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"
],
"tags": [
"sensitive-source",
"code-exec",
"external-sink"
]
},
"coverage": {
"level": "source",
"inputs": {
"toolSurface": true,
"implementationSource": true,
"packageMetadata": true,
"liveTransport": false
},
"caveats": [
"Tools were statically extracted from the published source (45 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-FLOW-004",
"title": "Sensitive-source and external-sink co-exist",
"category": "exfiltration",
"severity": "high",
"confidence": "strong",
"description": "Tools that read sensitive data ([list_printer_files]) and tools that can send data out ([bambu_network_bridge_status, bambu_network_call, upload_file, blender_mcp_edit_model]) are exposed together. An agent can move private data to the sink.",
"remediation": "Keep secret-reading and egress capabilities on separate, separately-approved servers.",
"location": {
"kind": "flow",
"name": "list_printer_files → bambu_network_bridge_status"
},
"evidence": "sources [list_printer_files] → sinks [bambu_network_bridge_status, bambu_network_call, upload_file, blender_mcp_edit_model]",
"owasp": "LLM02:2025 Sensitive Information Disclosure",
"references": [],
"data": {
"sources": [
"list_printer_files"
],
"sinks": [
"bambu_network_bridge_status",
"bambu_network_call",
"upload_file",
"blender_mcp_edit_model"
]
}
},
{
"ruleId": "MTC-CAP-001",
"title": "Tool \"bambu_network_bridge_status\" exposes command/code execution",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "Tool \"bambu_network_bridge_status\" appears to run shell commands or evaluate code (parameter \"command\"). Arbitrary execution driven by model input is one of the most dangerous MCP capabilities; combined with any untrusted input it becomes RCE.",
"remediation": "Sandbox execution, allowlist commands/arguments, and never pass model output to a shell unescaped.",
"location": {
"kind": "tool",
"name": "bambu_network_bridge_status"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-CAP-001",
"title": "Tool \"bambu_network_call\" exposes command/code execution",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "Tool \"bambu_network_call\" appears to run shell commands or evaluate code (parameter \"command\"). Arbitrary execution driven by model input is one of the most dangerous MCP capabilities; combined with any untrusted input it becomes RCE.",
"remediation": "Sandbox execution, allowlist commands/arguments, and never pass model output to a shell unescaped.",
"location": {
"kind": "tool",
"name": "bambu_network_call"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-CAP-001",
"title": "Tool \"blender_mcp_edit_model\" exposes command/code execution",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "Tool \"blender_mcp_edit_model\" appears to run shell commands or evaluate code (parameter \"command\"). Arbitrary execution driven by model input is one of the most dangerous MCP capabilities; combined with any untrusted input it becomes RCE.",
"remediation": "Sandbox execution, allowlist commands/arguments, and never pass model output to a shell unescaped.",
"location": {
"kind": "tool",
"name": "blender_mcp_edit_model"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (dist/bambu-network-bridge.js)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`dist/bambu-network-bridge.js:1`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.",
"remediation": "Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.",
"location": {
"kind": "server",
"name": "dist/bambu-network-bridge.js"
},
"evidence": "rt { spawn } from \"node:child_process\"; import fs from \"node:fs\"; import os from \"node:os\"; import path from \"node:path\"",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "dist/bambu-network-bridge.js",
"line": 1,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (dist/index.js)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`dist/index.js:2840`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.",
"remediation": "Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.",
"location": {
"kind": "server",
"name": "dist/index.js"
},
"evidence": "} = await import(\"node:child_process\"); const { promisify } = await import(\"node:util\"); const execFile",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "dist/index.js",
"line": 2840,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (dist/printers/bambu.js)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`dist/printers/bambu.js:1058`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.",
"remediation": "Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.",
"location": {
"kind": "server",
"name": "dist/printers/bambu.js"
},
"evidence": "} = await import(\"node:child_process\"); const tmpOut = pathMod.join(os.tmpdir(), `bambu-snap-${Date.now()}-${Ma",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "dist/printers/bambu.js",
"line": 1058,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (dist/stl/stl-manipulator.js)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`dist/stl/stl-manipulator.js:11`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.",
"remediation": "Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.",
"location": {
"kind": "server",
"name": "dist/stl/stl-manipulator.js"
},
"evidence": "port { execFile } from 'child_process'; import { flattenForCli, detectProfilesRoot } from '../slicer/profile-flatten.js'",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "dist/stl/stl-manipulator.js",
"line": 11,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (src/bambu-network-bridge.ts)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/bambu-network-bridge.ts:1`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.",
"remediation": "Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.",
"location": {
"kind": "server",
"name": "src/bambu-network-bridge.ts"
},
"evidence": "ullStreams } from \"node:child_process\"; import fs from \"node:fs\"; import os from \"node:os\"; import path from \"node:path\"",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "src/bambu-network-bridge.ts",
"line": 1,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (src/index.ts)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/index.ts:3571`): 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/index.ts"
},
"evidence": "} = await import(\"node:child_process\"); const { promisify } = await import(\"node:util\"); const execFileAsync =",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "src/index.ts",
"line": 3571,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (src/printers/bambu.ts)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/printers/bambu.ts:1351`): 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/printers/bambu.ts"
},
"evidence": "} = await import(\"node:child_process\"); const tmpOut = pathMod.join(os.tmpdir(), `bambu-snap-${Date.now()}-${Math.",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "src/printers/bambu.ts",
"line": 1351,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (src/stl/stl-manipulator.ts)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/stl/stl-manipulator.ts:11`): 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/stl/stl-manipulator.ts"
},
"evidence": "port { execFile } from 'child_process'; import { flattenForCli, detectProfilesRoot } from '../slicer/profile-flatten.js'",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "src/stl/stl-manipulator.ts",
"line": 11,
"nonRuntime": false
}
},
{
"ruleId": "MTC-CAP-007",
"title": "Unconstrained URL/host parameter \"host\" on \"upload_file\"",
"category": "network",
"severity": "medium",
"confidence": "heuristic",
"description": "Tool \"upload_file\" takes a URL/host parameter \"host\" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).",
"remediation": "Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.",
"location": {
"kind": "tool",
"name": "upload_file",
"field": "inputSchema.properties.host"
},
"owasp": "LLM06:2025 Excessive Agency",
"data": {
"param": "host"
}
},
{
"ruleId": "MTC-CAP-006",
"title": "Unconstrained command parameter \"bridge_command\" on \"bambu_network_bridge_status\"",
"category": "permissions",
"severity": "medium",
"confidence": "heuristic",
"description": "Tool \"bambu_network_bridge_status\" takes a command-shaped parameter \"bridge_command\" with no enum/pattern constraint. Free-form, model- or attacker-controlled arguments reaching a shell is the command-injection precondition.",
"remediation": "Constrain the parameter (enum/pattern), or build the command from a fixed template with escaped args.",
"location": {
"kind": "tool",
"name": "bambu_network_bridge_status",
"field": "inputSchema.properties.bridge_command"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"param": "bridge_command"
}
},
{
"ruleId": "MTC-CAP-006",
"title": "Unconstrained command parameter \"country_code\" on \"bambu_network_bridge_status\"",
"category": "permissions",
"severity": "medium",
"confidence": "heuristic",
"description": "Tool \"bambu_network_bridge_status\" takes a command-shaped parameter \"country_code\" 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": "bambu_network_bridge_status",
"field": "inputSchema.properties.country_code"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"param": "country_code"
}
},
{
"ruleId": "MTC-CAP-006",
"title": "Unconstrained command parameter \"bridge_command\" on \"bambu_network_call\"",
"category": "permissions",
"severity": "medium",
"confidence": "heuristic",
"description": "Tool \"bambu_network_call\" takes a command-shaped parameter \"bridge_command\" with no enum/pattern constraint. Free-form, model- or attacker-controlled arguments reaching a shell is the command-injection precondition.",
"remediation": "Constrain the parameter (enum/pattern), or build the command from a fixed template with escaped args.",
"location": {
"kind": "tool",
"name": "bambu_network_call",
"field": "inputSchema.properties.bridge_command"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"param": "bridge_command"
}
},
{
"ruleId": "MTC-CAP-006",
"title": "Unconstrained command parameter \"country_code\" on \"bambu_network_call\"",
"category": "permissions",
"severity": "medium",
"confidence": "heuristic",
"description": "Tool \"bambu_network_call\" takes a command-shaped parameter \"country_code\" 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": "bambu_network_call",
"field": "inputSchema.properties.country_code"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"param": "country_code"
}
},
{
"ruleId": "MTC-CAP-006",
"title": "Unconstrained command parameter \"bridge_command\" on \"blender_mcp_edit_model\"",
"category": "permissions",
"severity": "medium",
"confidence": "heuristic",
"description": "Tool \"blender_mcp_edit_model\" takes a command-shaped parameter \"bridge_command\" with no enum/pattern constraint. Free-form, model- or attacker-controlled arguments reaching a shell is the command-injection precondition.",
"remediation": "Constrain the parameter (enum/pattern), or build the command from a fixed template with escaped args.",
"location": {
"kind": "tool",
"name": "blender_mcp_edit_model",
"field": "inputSchema.properties.bridge_command"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"param": "bridge_command"
}
},
{
"ruleId": "MTC-CAP-005",
"title": "Mutating tool \"bambu_network_bridge_status\" declares no destructiveHint",
"category": "hygiene",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"bambu_network_bridge_status\" 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": "bambu_network_bridge_status"
},
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-CAP-005",
"title": "Mutating tool \"bambu_network_call\" declares no destructiveHint",
"category": "hygiene",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"bambu_network_call\" 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": "bambu_network_call"
},
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-CAP-005",
"title": "Mutating tool \"blender_mcp_edit_model\" declares no destructiveHint",
"category": "hygiene",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"blender_mcp_edit_model\" 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": "blender_mcp_edit_model"
},
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-SUP-010",
"title": "Package runs install-time scripts (postinstall)",
"category": "supply-chain",
"severity": "low",
"confidence": "heuristic",
"description": "\"bambu-printer-mcp\" executes postinstall script(s) at install time. An install hook runs at install time; most are routine build/setup, but review what it does before trusting it.",
"remediation": "Review the scripts; install with --ignore-scripts where possible and vet what they do.",
"location": {
"kind": "package",
"name": "bambu-printer-mcp"
},
"evidence": "patch-package",
"owasp": "LLM03:2025 Supply Chain",
"references": [
"https://github.com/ossf/package-analysis",
"https://owasp.org/www-project-top-10-ci-cd-security-risks/"
],
"data": {
"scripts": [
"postinstall"
]
}
}
],
"toxicFlows": [
{
"id": "flow-1",
"severity": "high",
"confidence": "strong",
"untrustedInput": [],
"sensitiveSource": [
"list_printer_files"
],
"externalSink": [
"bambu_network_bridge_status",
"bambu_network_call",
"upload_file",
"blender_mcp_edit_model"
],
"selfContained": false,
"path": [
"list_printer_files",
"bambu_network_bridge_status"
],
"pathWired": false,
"description": "A sensitive-source → external-sink chain exists: list_printer_files → bambu_network_bridge_status."
}
],
"capabilities": [
{
"tool": "bambu-printer-mcp",
"tags": [],
"reasons": {}
},
{
"tool": "Bambu Printer Status",
"tags": [],
"reasons": {}
},
{
"tool": "Bambu Printer Files",
"tags": [],
"reasons": {}
},
{
"tool": "Bambu Printer HMS Diagnostics",
"tags": [],
"reasons": {}
},
{
"tool": "get_printer_status",
"tags": [],
"reasons": {}
},
{
"tool": "get_printer_filaments",
"tags": [],
"reasons": {}
},
{
"tool": "resolve_3mf_ams_slots",
"tags": [],
"reasons": {}
},
{
"tool": "list_3mf_plate_objects",
"tags": [],
"reasons": {}
},
{
"tool": "extend_stl_base",
"tags": [],
"reasons": {}
},
{
"tool": "scale_stl",
"tags": [],
"reasons": {}
},
{
"tool": "rotate_stl",
"tags": [],
"reasons": {}
},
{
"tool": "get_stl_info",
"tags": [],
"reasons": {}
},
{
"tool": "list_templates",
"tags": [],
"reasons": {}
},
{
"tool": "save_template",
"tags": [],
"reasons": {}
},
{
"tool": "get_slice_settings",
"tags": [],
"reasons": {}
},
{
"tool": "slice_with_template",
"tags": [],
"reasons": {}
},
{
"tool": "slice_stl",
"tags": [],
"reasons": {}
},
{
"tool": "list_printer_files",
"tags": [
"sensitive-source"
],
"reasons": {
"sensitive-source": [
"keyword \"list_files\""
]
}
},
{
"tool": "bambu_network_bridge_status",
"tags": [
"code-exec"
],
"reasons": {
"code-exec": [
"parameter \"command\""
]
}
},
{
"tool": "bambu_network_call",
"tags": [
"code-exec"
],
"reasons": {
"code-exec": [
"parameter \"command\""
]
}
},
{
"tool": "print_3mf_bambu_network",
"tags": [],
"reasons": {}
},
{
"tool": "camera_snapshot",
"tags": [],
"reasons": {}
},
{
"tool": "delete_printer_file",
"tags": [],
"reasons": {}
},
{
"tool": "upload_gcode",
"tags": [],
"reasons": {}
},
{
"tool": "upload_file",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"keyword \"upload_file\""
]
}
},
{
"tool": "start_print",
"tags": [],
"reasons": {}
},
{
"tool": "start_print_job",
"tags": [],
"reasons": {}
},
{
"tool": "cancel_print",
"tags": [],
"reasons": {}
},
{
"tool": "pause_print",
"tags": [],
"reasons": {}
},
{
"tool": "resume_print",
"tags": [],
"reasons": {}
},
{
"tool": "clear_hms_errors",
"tags": [],
"reasons": {}
},
{
"tool": "set_print_speed",
"tags": [],
"reasons": {}
},
{
"tool": "set_airduct_mode",
"tags": [],
"reasons": {}
},
{
"tool": "reread_ams_rfid",
"tags": [],
"reasons": {}
},
{
"tool": "set_temperature",
"tags": [],
"reasons": {}
},
{
"tool": "set_fan_speed",
"tags": [],
"reasons": {}
},
{
"tool": "set_light",
"tags": [],
"reasons": {}
},
{
"tool": "skip_objects",
"tags": [],
"reasons": {}
},
{
"tool": "set_ams_drying",
"tags": [],
"reasons": {}
},
{
"tool": "print_3mf",
"tags": [],
"reasons": {}
},
{
"tool": "print_collar_charm",
"tags": [],
"reasons": {}
},
{
"tool": "merge_vertices",
"tags": [],
"reasons": {}
},
{
"tool": "center_model",
"tags": [],
"reasons": {}
},
{
"tool": "lay_flat",
"tags": [],
"reasons": {}
},
{
"tool": "blender_mcp_edit_model",
"tags": [
"code-exec"
],
"reasons": {
"code-exec": [
"parameter \"command\""
]
}
}
],
"surfaceDigest": "c01156e631fa02e1067e5b56dc4d4e7a04713dc9217f4809c258bde2de11f495",
"stats": {
"tools": 45,
"prompts": 0,
"resources": 0,
"findingsBySeverity": {
"critical": 0,
"high": 12,
"medium": 6,
"low": 4,
"info": 0
}
}
}