Raw scan report

Minicor — 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.

← Back to the scan page
{
  "tool": {
    "name": "mcptrustchecker",
    "version": "1.13.0",
    "methodologyVersion": "mcptrustchecker-1.13"
  },
  "target": {
    "id": "@minicor/mcp-server",
    "source": {
      "kind": "package",
      "origin": "@minicor/mcp-server"
    },
    "server": {
      "name": "@minicor/mcp-server"
    }
  },
  "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.13"
  },
  "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, sensitive-source and egress co-exist across tools (toxic-flow surface)",
      "untrusted input can reach code execution"
    ],
    "tags": [
      "code-exec",
      "external-sink",
      "untrusted-input",
      "sensitive-source"
    ]
  },
  "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-FLOW-002",
      "title": "Completed toxic-flow trifecta across tools",
      "category": "exfiltration",
      "severity": "critical",
      "confidence": "strong",
      "description": "This server (without client built-ins) exposes a complete data-exfiltration chain: pull_workflow → tfa_list_secrets → create_flow. Untrusted input is ingested, private data is read, and it can be sent to an external sink via the agent composing the tools (→). Static analysis proves the primitive exists, not that a specific run will occur.",
      "remediation": "Remove one leg of the trifecta: isolate untrusted-input tools from secret-reading tools and from egress tools, or require human approval between them.",
      "location": {
        "kind": "flow",
        "name": "pull_workflow → tfa_list_secrets → create_flow"
      },
      "owasp": "LLM02:2025 Sensitive Information Disclosure",
      "references": [],
      "data": {
        "untrusted": [
          "pull_workflow"
        ],
        "sources": [
          "tfa_list_secrets"
        ],
        "sinks": [
          "spawn_agent",
          "create_flow",
          "dev_mode_run",
          "create_issue",
          "register_job_webhook",
          "update_job_webhook",
          "delete_job_webhook",
          "tfa_provision_phone",
          "tfa_request_sms_otp"
        ],
        "path": [
          "pull_workflow",
          "tfa_list_secrets",
          "create_flow"
        ],
        "edges": [
          {
            "from": "pull_workflow",
            "to": "tfa_list_secrets",
            "kind": "agent-mediated"
          },
          {
            "from": "tfa_list_secrets",
            "to": "create_flow",
            "kind": "agent-mediated"
          }
        ],
        "wired": false
      }
    },
    {
      "ruleId": "MTC-CAP-001",
      "title": "Tool \"spawn_agent\" exposes command/code execution",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "Tool \"spawn_agent\" appears to run shell commands or evaluate code (keyword \"spawn\" in tool name). 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": "spawn_agent"
      },
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "tags": [
          "code-exec"
        ]
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (dist/recording-frames.js)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`dist/recording-frames.js:21`): 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/recording-frames.js"
      },
      "evidence": "rt { spawn } from \"node:child_process\"; import { createHash } from \"node:crypto\"; import { mkdtemp, mkdir, open, readFil",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "dist/recording-frames.js",
        "line": 21,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (dist/tools/vm-rpa.js)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`dist/tools/vm-rpa.js:250`): 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/tools/vm-rpa.js"
      },
      "evidence": "gify(appName)} result = subprocess.run([\"taskkill\", \"/IM\", app_name, \"/F\"], capture_output=True, text=True) print(json.d",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "dist/tools/vm-rpa.js",
        "line": 250,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (dist/tools/vm.js)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`dist/tools/vm.js:718`): 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/tools/vm.js"
      },
      "evidence": "subprocess result = subprocess.run([\"powershell\", \"-command\", \"Get-Clipboard\"], capture_output=True, text=True)",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "dist/tools/vm.js",
        "line": 718,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SRC-003",
      "title": "Hardcoded egress to an external endpoint (dist/seeer-client.js)",
      "category": "exfiltration",
      "severity": "medium",
      "confidence": "strong",
      "description": "In the server's implementation (`dist/seeer-client.js:96`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. 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/seeer-client.js"
      },
      "evidence": "} const res = await fetch(\"http://metadata.google.internal/computeMetadata/v1/instance/service-accounts/default/iden",
      "owasp": "LLM02:2025 Sensitive Information Disclosure",
      "data": {
        "rule": "MTC-SRC-003",
        "file": "dist/seeer-client.js",
        "line": 96,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-CAP-005",
      "title": "Mutating tool \"spawn_agent\" declares no destructiveHint",
      "category": "hygiene",
      "severity": "low",
      "confidence": "heuristic",
      "description": "Tool \"spawn_agent\" 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": "spawn_agent"
      },
      "data": {
        "tags": [
          "code-exec"
        ]
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in packaging/dev tooling (dist/setup.js)",
      "category": "permissions",
      "severity": "low",
      "confidence": "heuristic",
      "description": "In a packaging/dev/install script (shipped, but not the server runtime) (`dist/setup.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/setup.js"
      },
      "evidence": "ort { exec } from \"node:child_process\"; import fs from \"node:fs\"; import http from \"node:http\"; import os from \"node:os\"",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "dist/setup.js",
        "line": 11,
        "nonRuntime": true
      }
    }
  ],
  "toxicFlows": [
    {
      "id": "flow-1",
      "severity": "critical",
      "confidence": "strong",
      "untrustedInput": [
        "pull_workflow"
      ],
      "sensitiveSource": [
        "tfa_list_secrets"
      ],
      "externalSink": [
        "spawn_agent",
        "create_flow",
        "dev_mode_run",
        "create_issue",
        "register_job_webhook",
        "update_job_webhook",
        "delete_job_webhook",
        "tfa_provision_phone",
        "tfa_request_sms_otp"
      ],
      "selfContained": false,
      "path": [
        "pull_workflow",
        "tfa_list_secrets",
        "create_flow"
      ],
      "pathWired": false,
      "description": "A cross-tool exfiltration chain exists: pull_workflow → tfa_list_secrets → create_flow."
    }
  ],
  "capabilities": [
    {
      "tool": "codemode",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "setup_account",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "spawn_agent",
      "tags": [
        "code-exec"
      ],
      "reasons": {
        "code-exec": [
          "keyword \"spawn\" in tool name"
        ]
      }
    },
    {
      "tool": "agent_thread",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "answer_agent",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "guide_agent",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "await_agent",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_agent_catalog",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_agents",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_agent",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "create_agent",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "blueprint_list",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "blueprint_create",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "blueprint_get",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "blueprint_update",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "blueprint_add_entry",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "blueprint_list_entries",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "blueprint_entry_upload_url",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "blueprint_synthesize",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "blueprint_get_proposal",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "blueprint_apply_proposal",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "blueprint_reject_proposal",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "blueprint_answer_question",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "blueprint_build",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "blueprint_build_status",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "blueprint_import_cases",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "blueprint_list_versions",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "resolve_blueprint_state",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_config_stores",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_config_store",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_config_properties",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_config_property",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "update_config_property",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "remove_config_property",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "create_config_store",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "delete_config_store",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "restore_config_store",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "context",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_current_user",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_api_base_url",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "set_api_base_url",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "unset_api_base_url",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_workspace",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "create_workspace",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_archived_workflows",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "update_workflow",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "delete_workflow",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "restore_workflow",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "clone_workflow",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_workflow_flows",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_flow",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "read_flow",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "create_flow",
      "tags": [
        "external-sink"
      ],
      "reasons": {
        "external-sink": [
          "keyword \"http_request\""
        ]
      }
    },
    {
      "tool": "create_or_update_flows",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "update_flow",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "delete_flow",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_flow_versions",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "read_flow_version",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_executions",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_execution",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_execution_status",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_execution_result",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_full_execution",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_global_workflow_object",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_flow_run_response",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_flow_run_transformation",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_flow_run_program",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_execution_recording",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_flow_run_recording",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_recording_frames",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_recording_zoom",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_recording_clip",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "execute_workflow",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "execute_workflow_async",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dev_mode_load",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dev_mode_get_workspace",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dev_mode_get_step_list",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dev_mode_get_step",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dev_mode_edit_step",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dev_mode_add_step",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dev_mode_remove_step",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dev_mode_reorder",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dev_mode_regroup",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dev_mode_run",
      "tags": [
        "external-sink"
      ],
      "reasons": {
        "external-sink": [
          "keyword \"http_request\""
        ]
      }
    },
    {
      "tool": "dev_mode_get_run_status",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dev_mode_stop_run",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dev_mode_delete_draft",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dev_mode_publish",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_workspaces",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_workflows",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_workflow",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "create_workflow",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "vm_list",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_issues",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_issue",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "create_issue",
      "tags": [
        "external-sink"
      ],
      "reasons": {
        "external-sink": [
          "keyword \"create_issue\""
        ]
      }
    },
    {
      "tool": "update_issue",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "delete_issue",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_middlewares",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "register_middleware",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_workspace_api_keys",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "set_middleware_api_key",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "register_job",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "update_job",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_job",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "delete_job",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "delete_middleware",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_job_webhooks",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_job_webhook_events",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "register_job_webhook",
      "tags": [
        "external-sink"
      ],
      "reasons": {
        "external-sink": [
          "keyword \"webhook\""
        ]
      }
    },
    {
      "tool": "get_job_webhook",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "update_job_webhook",
      "tags": [
        "external-sink"
      ],
      "reasons": {
        "external-sink": [
          "keyword \"webhook\""
        ]
      }
    },
    {
      "tool": "delete_job_webhook",
      "tags": [
        "external-sink"
      ],
      "reasons": {
        "external-sink": [
          "keyword \"webhook\""
        ]
      }
    },
    {
      "tool": "run_job",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "stop_job_execution",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_job_executions",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_job_execution",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "inspect_job_execution",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "resolve_job_state",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "teach_job",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "publish_job",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_build_status",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "answer_build_question",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "cancel_build",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "update_build_run",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "add_test_case",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "update_test_case",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_scenarios",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "create_scenario",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "update_scenario",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "delete_scenario",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "run_tests",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_test_report",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "pipeline_template_list",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "pipeline_template_get",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "pipeline_template_put",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "pipeline_builds",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "pipeline_build_get",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "pipeline_build_trace",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "analyze_recording",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "annotate_recording",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_recording_event",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "session_start",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "session_checkpoint",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "session_end",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_skills",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_skill",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "save_skill",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "generate_skill",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_workspace_context",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "init_project",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "pull_workflow",
      "tags": [
        "untrusted-input"
      ],
      "reasons": {
        "untrusted-input": [
          "keyword \"download\""
        ]
      }
    },
    {
      "tool": "push_workflow",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "sync_status",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "pull_all",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "push_changed",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "set_workspaces_root",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "clone_workspace",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_tasks",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "run_task",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_task_runs",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_task_run",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "send_task_message",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "tfa_provision_phone",
      "tags": [
        "external-sink"
      ],
      "reasons": {
        "external-sink": [
          "keyword \"webhook\""
        ]
      }
    },
    {
      "tool": "tfa_provision_email",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "tfa_list_channels",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "tfa_delete_channel",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "tfa_register_secret",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "tfa_list_secrets",
      "tags": [
        "sensitive-source"
      ],
      "reasons": {
        "sensitive-source": [
          "keyword \"list_secrets\""
        ]
      }
    },
    {
      "tool": "tfa_delete_secret",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "tfa_generate_totp",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "tfa_verify_totp",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "tfa_parse_qr",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "tfa_request_sms_otp",
      "tags": [
        "external-sink"
      ],
      "reasons": {
        "external-sink": [
          "keyword \"sms\""
        ]
      }
    },
    {
      "tool": "tfa_request_email_otp",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "tfa_get_challenge",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "tfa_resolve_challenge",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "tfa_cancel_challenge",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "triage_clusters",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "triage_cluster",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "triage_disposition",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "create_rpa_flow",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "debug_rpa_step",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "generate_state_description",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "vm_reset_state",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "batch_test_rpa",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "replay_execution_step",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_lds_setup_guide",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "deploy_vm",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "vm_connect",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "vm_disconnect",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "vm_status",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "vm_screenshot",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "vm_screenshot_region",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "vm_execute_script",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "vm_execution_status",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "vm_list_sessions",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "vm_start_session",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "vm_stop_session",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "vm_get_mds_config",
      "tags": [],
      "reasons": {}
    }
  ],
  "surfaceDigest": "a040ca1a710f2b78bd74872e5b62df4ecd4ba376600ad3cdd3aaaab0376d4af9",
  "stats": {
    "tools": 200,
    "prompts": 0,
    "resources": 0,
    "findingsBySeverity": {
      "critical": 1,
      "high": 4,
      "medium": 1,
      "low": 2,
      "info": 0
    }
  }
}