Raw scan report

Orbitneststudio — the complete, unedited output of the deterministic mcptrustchecker engine v1.9.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.9.0",
    "methodologyVersion": "mcptrustchecker-1.9"
  },
  "target": {
    "id": "@orbitneststudio/mcp-server",
    "source": {
      "kind": "package",
      "origin": "@orbitneststudio/mcp-server"
    },
    "server": {
      "name": "@orbitneststudio/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.9"
  },
  "capability": {
    "level": "critical",
    "reasons": [
      "ingests untrusted external content (a prompt-injection entry point)",
      "can send data / act on an external service",
      "can create, modify or delete files",
      "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": [
      "untrusted-input",
      "sensitive-source",
      "external-sink",
      "code-exec",
      "file-write"
    ]
  },
  "coverage": {
    "level": "source",
    "inputs": {
      "toolSurface": true,
      "implementationSource": true,
      "packageMetadata": true,
      "liveTransport": false
    },
    "caveats": [
      "Tools were statically extracted from the published source (113 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: orbitnest_download_file → orbitnest_execute_sql → orbitnest_create_policy. 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": "orbitnest_download_file → orbitnest_execute_sql → orbitnest_create_policy"
      },
      "owasp": "LLM02:2025 Sensitive Information Disclosure",
      "references": [],
      "data": {
        "untrusted": [
          "orbitnest_get_schema",
          "orbitnest_download_file"
        ],
        "sources": [
          "orbitnest_execute_sql",
          "orbitnest_get_env_variables",
          "orbitnest_list_files"
        ],
        "sinks": [
          "orbitnest_create_webhook",
          "orbitnest_delete_webhook",
          "orbitnest_test_webhook",
          "orbitnest_set_sms_config",
          "orbitnest_test_sms",
          "orbitnest_create_policy",
          "orbitnest_upload_file"
        ],
        "path": [
          "orbitnest_download_file",
          "orbitnest_execute_sql",
          "orbitnest_create_policy"
        ],
        "edges": [
          {
            "from": "orbitnest_download_file",
            "to": "orbitnest_execute_sql",
            "kind": "agent-mediated"
          },
          {
            "from": "orbitnest_execute_sql",
            "to": "orbitnest_create_policy",
            "kind": "agent-mediated"
          }
        ],
        "wired": false
      }
    },
    {
      "ruleId": "MTC-CAP-001",
      "title": "Tool \"orbitnest_create_policy\" exposes command/code execution",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "Tool \"orbitnest_create_policy\" 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": "orbitnest_create_policy"
      },
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "tags": [
          "code-exec"
        ]
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (dist/auth/oauth-login.js)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`dist/auth/oauth-login.js:3`): 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/auth/oauth-login.js"
      },
      "evidence": "rt { spawn } from 'node:child_process'; import { logger } from '../utils/logger.js'; /** How long we wait for the user t",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "dist/auth/oauth-login.js",
        "line": 3,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (src/auth/oauth-login.ts)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`src/auth/oauth-login.ts:3`): 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/auth/oauth-login.ts"
      },
      "evidence": "rt { spawn } from 'node:child_process'; import { AddressInfo } from 'node:net'; import type { AppConfig } from '../types",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "src/auth/oauth-login.ts",
        "line": 3,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-CAP-007",
      "title": "Unconstrained URL/host parameter \"url\" on \"orbitnest_create_webhook\"",
      "category": "network",
      "severity": "medium",
      "confidence": "heuristic",
      "description": "Tool \"orbitnest_create_webhook\" takes a URL/host parameter \"url\" 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": "orbitnest_create_webhook",
        "field": "inputSchema.properties.url"
      },
      "owasp": "LLM06:2025 Excessive Agency",
      "data": {
        "param": "url"
      }
    },
    {
      "ruleId": "MTC-CAP-002",
      "title": "Tool \"orbitnest_delete_files\" can modify the filesystem",
      "category": "permissions",
      "severity": "medium",
      "confidence": "strong",
      "description": "Tool \"orbitnest_delete_files\" can write, overwrite or delete files (keyword \"delete_file\" in tool name). Verify it is scoped to a safe directory.",
      "remediation": "Constrain file operations to an explicit, non-sensitive root; reject path traversal.",
      "location": {
        "kind": "tool",
        "name": "orbitnest_delete_files"
      },
      "data": {
        "tags": [
          "file-write"
        ]
      }
    },
    {
      "ruleId": "MTC-CAP-006",
      "title": "Unconstrained command parameter \"command\" on \"orbitnest_create_policy\"",
      "category": "permissions",
      "severity": "medium",
      "confidence": "heuristic",
      "description": "Tool \"orbitnest_create_policy\" takes a command-shaped parameter \"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": "orbitnest_create_policy",
        "field": "inputSchema.properties.command"
      },
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "param": "command"
      }
    },
    {
      "ruleId": "MTC-CAP-005",
      "title": "Mutating tool \"orbitnest_create_policy\" declares no destructiveHint",
      "category": "hygiene",
      "severity": "low",
      "confidence": "heuristic",
      "description": "Tool \"orbitnest_create_policy\" 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": "orbitnest_create_policy"
      },
      "data": {
        "tags": [
          "code-exec"
        ]
      }
    },
    {
      "ruleId": "MTC-CAP-005",
      "title": "Mutating tool \"orbitnest_delete_files\" declares no destructiveHint",
      "category": "hygiene",
      "severity": "low",
      "confidence": "heuristic",
      "description": "Tool \"orbitnest_delete_files\" 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": "orbitnest_delete_files"
      },
      "data": {
        "tags": [
          "file-write"
        ]
      }
    }
  ],
  "toxicFlows": [
    {
      "id": "flow-1",
      "severity": "critical",
      "confidence": "strong",
      "untrustedInput": [
        "orbitnest_get_schema",
        "orbitnest_download_file"
      ],
      "sensitiveSource": [
        "orbitnest_execute_sql",
        "orbitnest_get_env_variables",
        "orbitnest_list_files"
      ],
      "externalSink": [
        "orbitnest_create_webhook",
        "orbitnest_delete_webhook",
        "orbitnest_test_webhook",
        "orbitnest_set_sms_config",
        "orbitnest_test_sms",
        "orbitnest_create_policy",
        "orbitnest_upload_file"
      ],
      "selfContained": false,
      "path": [
        "orbitnest_download_file",
        "orbitnest_execute_sql",
        "orbitnest_create_policy"
      ],
      "pathWired": false,
      "description": "A cross-tool exfiltration chain exists: orbitnest_download_file → orbitnest_execute_sql → orbitnest_create_policy."
    }
  ],
  "capabilities": [
    {
      "tool": "orbitnest_list_admins",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_get_admin",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_create_admin",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_update_admin",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_delete_admin",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_get_analytics_overview",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_get_analytics_events",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_get_top_analytics_events",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_get_top_analytics_screens",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_get_analytics_retention",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_get_analytics_funnel",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_get_analytics_performance",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_get_analytics_crashes",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_create_analytics_token",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_list_analytics_tokens",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_revoke_analytics_token",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_admin_signin",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_login",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_admin_signup",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_admin_signup_verified",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_request_verification",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_refresh_token",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_admin_signout",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_get_profile",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_create_job",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_list_jobs",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_get_job",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_update_job",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_delete_job",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_trigger_job",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_get_job_runs",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_get_dashboard_stats",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_get_activity",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_get_schema",
      "tags": [
        "untrusted-input"
      ],
      "reasons": {
        "untrusted-input": [
          "keyword \"fetch\""
        ]
      }
    },
    {
      "tool": "orbitnest_execute_sql",
      "tags": [
        "sensitive-source"
      ],
      "reasons": {
        "sensitive-source": [
          "keyword \"execute_sql\"",
          "parameter \"sql\""
        ]
      }
    },
    {
      "tool": "orbitnest_create_table",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_get_table_data",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_insert_row",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_update_row",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_delete_row",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_bulk_insert",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_bulk_update",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_bulk_delete",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_create_function",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_list_functions",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_get_function",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_update_function",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_delete_function",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_get_function_logs",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_get_env_variables",
      "tags": [
        "sensitive-source"
      ],
      "reasons": {
        "sensitive-source": [
          "keyword \"get_env\""
        ]
      }
    },
    {
      "tool": "orbitnest_create_env_variable",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_update_env_variable",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_delete_env_variable",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_get_connection_string",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_list_webhooks",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_create_webhook",
      "tags": [
        "external-sink"
      ],
      "reasons": {
        "external-sink": [
          "keyword \"http_post\""
        ]
      }
    },
    {
      "tool": "orbitnest_delete_webhook",
      "tags": [
        "external-sink"
      ],
      "reasons": {
        "external-sink": [
          "keyword \"webhook\""
        ]
      }
    },
    {
      "tool": "orbitnest_test_webhook",
      "tags": [
        "external-sink"
      ],
      "reasons": {
        "external-sink": [
          "keyword \"webhook\""
        ]
      }
    },
    {
      "tool": "orbitnest_get_sms_config",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_set_sms_config",
      "tags": [
        "external-sink"
      ],
      "reasons": {
        "external-sink": [
          "keyword \"sms\""
        ]
      }
    },
    {
      "tool": "orbitnest_test_sms",
      "tags": [
        "external-sink"
      ],
      "reasons": {
        "external-sink": [
          "keyword \"sms\""
        ]
      }
    },
    {
      "tool": "orbitnest_enable_extension",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_query_logs",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_get_slow_queries",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_export_logs",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_get_log_stats",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_run_migrations",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_list_migrations",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_migration_status",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_get_project_context",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_sync_memory",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_get_recent_changes",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_get_open_tasks",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_add_task",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_complete_task",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_get_decisions",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_add_decision",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_add_feature",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_update_feature",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_add_event",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_search_memory",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_set_project_profile",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_create_project",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_list_projects",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_get_project",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_update_project",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_delete_project",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_set_active_project",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_toggle_debug_mode",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_create_api_keys",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_get_api_keys",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_get_project_health",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_list_realtime_tables",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_enable_realtime",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_disable_realtime",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_broadcast",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_get_rls_status",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_enable_rls",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_disable_rls",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_list_policies",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_create_policy",
      "tags": [
        "code-exec"
      ],
      "reasons": {
        "code-exec": [
          "parameter \"command\""
        ]
      }
    },
    {
      "tool": "orbitnest_delete_policy",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_get_smtp_settings",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_update_smtp_settings",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_list_buckets",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_create_bucket",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_delete_bucket",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_list_files",
      "tags": [
        "sensitive-source"
      ],
      "reasons": {
        "sensitive-source": [
          "keyword \"list_files\""
        ]
      }
    },
    {
      "tool": "orbitnest_upload_file",
      "tags": [
        "external-sink"
      ],
      "reasons": {
        "external-sink": [
          "keyword \"upload_file\""
        ]
      }
    },
    {
      "tool": "orbitnest_download_file",
      "tags": [
        "untrusted-input"
      ],
      "reasons": {
        "untrusted-input": [
          "keyword \"download\""
        ]
      }
    },
    {
      "tool": "orbitnest_delete_files",
      "tags": [
        "file-write"
      ],
      "reasons": {
        "file-write": [
          "keyword \"delete_file\" in tool name"
        ]
      }
    },
    {
      "tool": "orbitnest_get_public_url",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "orbitnest_get_bucket_size",
      "tags": [],
      "reasons": {}
    }
  ],
  "surfaceDigest": "ade4e68cced9089119cc66a411a16f05af4681726c737f330f70e1aa305c0a53",
  "stats": {
    "tools": 113,
    "prompts": 0,
    "resources": 0,
    "findingsBySeverity": {
      "critical": 1,
      "high": 3,
      "medium": 3,
      "low": 2,
      "info": 0
    }
  }
}