x402 Trading & On-Chain Intelligence — 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": "https://x402-services-production.up.railway.app/mcp",
"source": {
"kind": "http",
"origin": "https://x402-services-production.up.railway.app/mcp"
},
"server": {
"name": "x402-services",
"version": "1.0.0"
}
},
"grade": "A",
"score": {
"score": 94,
"threatScore": 100,
"grade": "A",
"band": "A",
"categorySubtotals": {
"injection": 0,
"exfiltration": 0,
"permissions": 0,
"supply-chain": 0,
"network": 0,
"hygiene": 0
},
"vector": [
{
"kind": "client",
"term": "capability-exposure",
"level": "high",
"label": "capability blast radius (high) — client exposure if the model is manipulated",
"appliedPenalty": 6
},
{
"kind": "client",
"term": "coverage-honesty",
"level": "live",
"label": "inspection depth (live) — how much of the target the scan could see",
"appliedPenalty": 0
}
],
"gatesFired": [],
"methodologyVersion": "mcptrustchecker-1.13"
},
"capability": {
"level": "high",
"reasons": [
"ingests untrusted external content (a prompt-injection entry point)",
"can send data / act on an external service",
"can execute shell commands or code"
],
"tags": [
"untrusted-input",
"external-sink",
"code-exec"
]
},
"coverage": {
"level": "live",
"inputs": {
"toolSurface": true,
"implementationSource": false,
"packageMetadata": false,
"liveTransport": true
},
"caveats": []
},
"findings": [
{
"ruleId": "MTC-CAP-001",
"title": "Tool \"exec_quote\" exposes command/code execution",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "Tool \"exec_quote\" appears to run shell commands or evaluate code (keyword \"exec\" 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": "exec_quote"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-CAP-001",
"title": "Tool \"exec_slippage\" exposes command/code execution",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "Tool \"exec_slippage\" appears to run shell commands or evaluate code (keyword \"exec\" 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": "exec_slippage"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-CAP-001",
"title": "Tool \"exec_sandwich\" exposes command/code execution",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "Tool \"exec_sandwich\" appears to run shell commands or evaluate code (keyword \"exec\" 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": "exec_sandwich"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-CAP-001",
"title": "Tool \"exec_gas\" exposes command/code execution",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "Tool \"exec_gas\" appears to run shell commands or evaluate code (keyword \"exec\" 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": "exec_gas"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-FLOW-005",
"title": "Untrusted input can drive an external action",
"category": "exfiltration",
"severity": "medium",
"confidence": "strong",
"description": "Untrusted-input tools ([read, read_structured, pubsub_poll, inbox_poll]) co-exist with external-action tools ([schedule, deadman_register, inbox_create, inbox_poll, exec_quote, exec_slippage, exec_sandwich, exec_gas]). 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": "read → schedule"
},
"evidence": "untrusted [read, read_structured, pubsub_poll, inbox_poll] → sinks [schedule, deadman_register, inbox_create, inbox_poll, exec_quote, exec_slippage, exec_sandwi",
"owasp": "LLM06:2025 Excessive Agency",
"references": [],
"data": {
"untrusted": [
"read",
"read_structured",
"pubsub_poll",
"inbox_poll"
],
"sinks": [
"schedule",
"deadman_register",
"inbox_create",
"inbox_poll",
"exec_quote",
"exec_slippage",
"exec_sandwich",
"exec_gas"
]
}
},
{
"ruleId": "MTC-CAP-007",
"title": "Unconstrained URL/host parameter \"url\" on \"read\"",
"category": "network",
"severity": "medium",
"confidence": "heuristic",
"description": "Tool \"read\" 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": "read",
"field": "inputSchema.properties.url"
},
"owasp": "LLM06:2025 Excessive Agency",
"data": {
"param": "url"
}
},
{
"ruleId": "MTC-CAP-007",
"title": "Unconstrained URL/host parameter \"url\" on \"read_structured\"",
"category": "network",
"severity": "medium",
"confidence": "heuristic",
"description": "Tool \"read_structured\" 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": "read_structured",
"field": "inputSchema.properties.url"
},
"owasp": "LLM06:2025 Excessive Agency",
"data": {
"param": "url"
}
},
{
"ruleId": "MTC-CAP-007",
"title": "Unconstrained URL/host parameter \"url\" on \"schedule\"",
"category": "network",
"severity": "medium",
"confidence": "heuristic",
"description": "Tool \"schedule\" 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": "schedule",
"field": "inputSchema.properties.url"
},
"owasp": "LLM06:2025 Excessive Agency",
"data": {
"param": "url"
}
},
{
"ruleId": "MTC-CAP-007",
"title": "Unconstrained URL/host parameter \"url\" on \"deadman_register\"",
"category": "network",
"severity": "medium",
"confidence": "heuristic",
"description": "Tool \"deadman_register\" 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": "deadman_register",
"field": "inputSchema.properties.url"
},
"owasp": "LLM06:2025 Excessive Agency",
"data": {
"param": "url"
}
},
{
"ruleId": "MTC-CAP-005",
"title": "Mutating tool \"exec_quote\" declares no destructiveHint",
"category": "hygiene",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"exec_quote\" 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": "exec_quote"
},
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-CAP-005",
"title": "Mutating tool \"exec_slippage\" declares no destructiveHint",
"category": "hygiene",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"exec_slippage\" 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": "exec_slippage"
},
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-CAP-005",
"title": "Mutating tool \"exec_sandwich\" declares no destructiveHint",
"category": "hygiene",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"exec_sandwich\" 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": "exec_sandwich"
},
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-CAP-005",
"title": "Mutating tool \"exec_gas\" declares no destructiveHint",
"category": "hygiene",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"exec_gas\" 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": "exec_gas"
},
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-NET-005",
"title": "Remote HTTP MCP endpoint",
"category": "network",
"severity": "info",
"confidence": "strong",
"description": "Remote endpoint x402-services-production.up.railway.app. MCP Trust Checker does not test server-side authentication/authorization; verify the endpoint requires auth.",
"location": {
"kind": "transport"
}
}
],
"toxicFlows": [
{
"id": "flow-1",
"severity": "medium",
"confidence": "strong",
"untrustedInput": [
"read",
"read_structured",
"pubsub_poll",
"inbox_poll"
],
"sensitiveSource": [],
"externalSink": [
"schedule",
"deadman_register",
"inbox_create",
"inbox_poll",
"exec_quote",
"exec_slippage",
"exec_sandwich",
"exec_gas"
],
"selfContained": false,
"description": "Untrusted input can drive an external action even though no sensitive source is exposed."
}
],
"capabilities": [
{
"tool": "markdown",
"tags": [],
"reasons": {}
},
{
"tool": "extract",
"tags": [],
"reasons": {}
},
{
"tool": "read",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
]
}
},
{
"tool": "read_structured",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
]
}
},
{
"tool": "memory_set",
"tags": [],
"reasons": {}
},
{
"tool": "memory_get",
"tags": [],
"reasons": {}
},
{
"tool": "schedule",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"keyword \"webhook\""
]
}
},
{
"tool": "schedule_status",
"tags": [],
"reasons": {}
},
{
"tool": "counter",
"tags": [],
"reasons": {}
},
{
"tool": "lock_acquire",
"tags": [],
"reasons": {}
},
{
"tool": "lock_release",
"tags": [],
"reasons": {}
},
{
"tool": "queue_push",
"tags": [],
"reasons": {}
},
{
"tool": "queue_pop",
"tags": [],
"reasons": {}
},
{
"tool": "idempotency",
"tags": [],
"reasons": {}
},
{
"tool": "pubsub_publish",
"tags": [],
"reasons": {}
},
{
"tool": "pubsub_poll",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
]
}
},
{
"tool": "board_set",
"tags": [],
"reasons": {}
},
{
"tool": "board_get",
"tags": [],
"reasons": {}
},
{
"tool": "ratelimit",
"tags": [],
"reasons": {}
},
{
"tool": "deadman_register",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"keyword \"webhook\""
]
}
},
{
"tool": "deadman_ping",
"tags": [],
"reasons": {}
},
{
"tool": "calc",
"tags": [],
"reasons": {}
},
{
"tool": "datetime",
"tags": [],
"reasons": {}
},
{
"tool": "business_days",
"tags": [],
"reasons": {}
},
{
"tool": "regex",
"tags": [],
"reasons": {}
},
{
"tool": "jsonschema",
"tags": [],
"reasons": {}
},
{
"tool": "diff",
"tags": [],
"reasons": {}
},
{
"tool": "cron_explain",
"tags": [],
"reasons": {}
},
{
"tool": "schedule_cron",
"tags": [],
"reasons": {}
},
{
"tool": "links_check",
"tags": [],
"reasons": {}
},
{
"tool": "inbox_create",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"keyword \"webhook\""
]
}
},
{
"tool": "inbox_poll",
"tags": [
"untrusted-input",
"external-sink"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
],
"external-sink": [
"keyword \"webhook\""
]
}
},
{
"tool": "wallet_reputation",
"tags": [],
"reasons": {}
},
{
"tool": "crypto_price",
"tags": [],
"reasons": {}
},
{
"tool": "crypto_convert",
"tags": [],
"reasons": {}
},
{
"tool": "crypto_balances",
"tags": [],
"reasons": {}
},
{
"tool": "crypto_gas",
"tags": [],
"reasons": {}
},
{
"tool": "crypto_ens",
"tags": [],
"reasons": {}
},
{
"tool": "crypto_tx",
"tags": [],
"reasons": {}
},
{
"tool": "crypto_token",
"tags": [],
"reasons": {}
},
{
"tool": "crypto_yields",
"tags": [],
"reasons": {}
},
{
"tool": "crypto_activity",
"tags": [],
"reasons": {}
},
{
"tool": "crypto_contract",
"tags": [],
"reasons": {}
},
{
"tool": "snipe_newpairs",
"tags": [],
"reasons": {}
},
{
"tool": "snipe_trending",
"tags": [],
"reasons": {}
},
{
"tool": "snipe_safety",
"tags": [],
"reasons": {}
},
{
"tool": "snipe_honeypot",
"tags": [],
"reasons": {}
},
{
"tool": "snipe_holders",
"tags": [],
"reasons": {}
},
{
"tool": "snipe_pair",
"tags": [],
"reasons": {}
},
{
"tool": "snipe_search",
"tags": [],
"reasons": {}
},
{
"tool": "snipe_wallet",
"tags": [],
"reasons": {}
},
{
"tool": "snipe_impact",
"tags": [],
"reasons": {}
},
{
"tool": "snipe_rh",
"tags": [],
"reasons": {}
},
{
"tool": "rh_stock",
"tags": [],
"reasons": {}
},
{
"tool": "rh_stocks",
"tags": [],
"reasons": {}
},
{
"tool": "rh_premium",
"tags": [],
"reasons": {}
},
{
"tool": "rh_arb",
"tags": [],
"reasons": {}
},
{
"tool": "rh_yields",
"tags": [],
"reasons": {}
},
{
"tool": "rh_tvl",
"tags": [],
"reasons": {}
},
{
"tool": "rh_pool",
"tags": [],
"reasons": {}
},
{
"tool": "rh_gainers",
"tags": [],
"reasons": {}
},
{
"tool": "rh_session_clock",
"tags": [],
"reasons": {}
},
{
"tool": "rh_gap_radar",
"tags": [],
"reasons": {}
},
{
"tool": "rh_liquidity_map",
"tags": [],
"reasons": {}
},
{
"tool": "rh_depth",
"tags": [],
"reasons": {}
},
{
"tool": "rh_spread",
"tags": [],
"reasons": {}
},
{
"tool": "rh_new_listings",
"tags": [],
"reasons": {}
},
{
"tool": "rh_perp_funding",
"tags": [],
"reasons": {}
},
{
"tool": "rh_perp_oi",
"tags": [],
"reasons": {}
},
{
"tool": "rh_basis",
"tags": [],
"reasons": {}
},
{
"tool": "rh_funding_arb",
"tags": [],
"reasons": {}
},
{
"tool": "rh_oracle_deviation",
"tags": [],
"reasons": {}
},
{
"tool": "rh_verify",
"tags": [],
"reasons": {}
},
{
"tool": "rh_dislocation",
"tags": [],
"reasons": {}
},
{
"tool": "rh_momentum",
"tags": [],
"reasons": {}
},
{
"tool": "rh_whale_flow",
"tags": [],
"reasons": {}
},
{
"tool": "rh_funding_scan",
"tags": [],
"reasons": {}
},
{
"tool": "rh_catalysts",
"tags": [],
"reasons": {}
},
{
"tool": "sol_launches",
"tags": [],
"reasons": {}
},
{
"tool": "sol_graduating",
"tags": [],
"reasons": {}
},
{
"tool": "sol_rug_check",
"tags": [],
"reasons": {}
},
{
"tool": "perps_funding",
"tags": [],
"reasons": {}
},
{
"tool": "perps_funding_arb",
"tags": [],
"reasons": {}
},
{
"tool": "perps_basis",
"tags": [],
"reasons": {}
},
{
"tool": "perps_markets",
"tags": [],
"reasons": {}
},
{
"tool": "perps_movers",
"tags": [],
"reasons": {}
},
{
"tool": "perps_oi",
"tags": [],
"reasons": {}
},
{
"tool": "catalysts_unlocks",
"tags": [],
"reasons": {}
},
{
"tool": "catalysts_search",
"tags": [],
"reasons": {}
},
{
"tool": "catalysts_calendar",
"tags": [],
"reasons": {}
},
{
"tool": "catalysts_governance",
"tags": [],
"reasons": {}
},
{
"tool": "exec_quote",
"tags": [
"code-exec"
],
"reasons": {
"code-exec": [
"keyword \"exec\" in tool name"
]
}
},
{
"tool": "exec_slippage",
"tags": [
"code-exec"
],
"reasons": {
"code-exec": [
"keyword \"exec\" in tool name"
]
}
},
{
"tool": "exec_sandwich",
"tags": [
"code-exec"
],
"reasons": {
"code-exec": [
"keyword \"exec\" in tool name"
]
}
},
{
"tool": "exec_gas",
"tags": [
"code-exec"
],
"reasons": {
"code-exec": [
"keyword \"exec\" in tool name"
]
}
},
{
"tool": "options_greeks",
"tags": [],
"reasons": {}
},
{
"tool": "options_price",
"tags": [],
"reasons": {}
},
{
"tool": "options_chain",
"tags": [],
"reasons": {}
},
{
"tool": "options_maxpain",
"tags": [],
"reasons": {}
},
{
"tool": "options_vol",
"tags": [],
"reasons": {}
},
{
"tool": "predict_odds",
"tags": [],
"reasons": {}
},
{
"tool": "predict_market",
"tags": [],
"reasons": {}
},
{
"tool": "predict_trending",
"tags": [],
"reasons": {}
},
{
"tool": "predict_arb",
"tags": [],
"reasons": {}
},
{
"tool": "predict_feargreed",
"tags": [],
"reasons": {}
},
{
"tool": "analytics_price_at",
"tags": [],
"reasons": {}
},
{
"tool": "analytics_indicators",
"tags": [],
"reasons": {}
},
{
"tool": "analytics_ohlcv",
"tags": [],
"reasons": {}
},
{
"tool": "compliance_screen",
"tags": [],
"reasons": {}
},
{
"tool": "compliance_risk",
"tags": [],
"reasons": {}
},
{
"tool": "compliance_label",
"tags": [],
"reasons": {}
},
{
"tool": "compliance_taint",
"tags": [],
"reasons": {}
},
{
"tool": "lending_health",
"tags": [],
"reasons": {}
},
{
"tool": "lending_rates",
"tags": [],
"reasons": {}
},
{
"tool": "agent_reputation",
"tags": [],
"reasons": {}
},
{
"tool": "ai_models",
"tags": [],
"reasons": {}
},
{
"tool": "ai_chat",
"tags": [],
"reasons": {}
},
{
"tool": "ai_chat_pro",
"tags": [],
"reasons": {}
},
{
"tool": "rhchain_block",
"tags": [],
"reasons": {}
},
{
"tool": "rhchain_tx",
"tags": [],
"reasons": {}
},
{
"tool": "rhchain_balance",
"tags": [],
"reasons": {}
},
{
"tool": "rhchain_token_transfers",
"tags": [],
"reasons": {}
},
{
"tool": "rhchain_logs",
"tags": [],
"reasons": {}
},
{
"tool": "rhchain_gas",
"tags": [],
"reasons": {}
},
{
"tool": "rhchain_contract",
"tags": [],
"reasons": {}
},
{
"tool": "rhchain_call",
"tags": [],
"reasons": {}
},
{
"tool": "rhchain_nonce",
"tags": [],
"reasons": {}
},
{
"tool": "rhchain_activity",
"tags": [],
"reasons": {}
},
{
"tool": "rhchain_registry",
"tags": [],
"reasons": {}
},
{
"tool": "rhchain_usdg",
"tags": [],
"reasons": {}
},
{
"tool": "rhchain_watch",
"tags": [],
"reasons": {}
},
{
"tool": "ton_block",
"tags": [],
"reasons": {}
},
{
"tool": "ton_account",
"tags": [],
"reasons": {}
},
{
"tool": "ton_balance",
"tags": [],
"reasons": {}
},
{
"tool": "ton_tx",
"tags": [],
"reasons": {}
},
{
"tool": "ton_jetton",
"tags": [],
"reasons": {}
},
{
"tool": "ton_jetton_holders",
"tags": [],
"reasons": {}
},
{
"tool": "ton_transfers",
"tags": [],
"reasons": {}
},
{
"tool": "ton_dns",
"tags": [],
"reasons": {}
},
{
"tool": "ton_price",
"tags": [],
"reasons": {}
},
{
"tool": "ton_gram",
"tags": [],
"reasons": {}
},
{
"tool": "ton_nfts",
"tags": [],
"reasons": {}
},
{
"tool": "ton_agent_wallet",
"tags": [],
"reasons": {}
},
{
"tool": "preflight",
"tags": [],
"reasons": {}
},
{
"tool": "safety_guardrail",
"tags": [],
"reasons": {}
},
{
"tool": "safety_simulate",
"tags": [],
"reasons": {}
},
{
"tool": "safety_approvals",
"tags": [],
"reasons": {}
},
{
"tool": "safety_decode",
"tags": [],
"reasons": {}
},
{
"tool": "portfolio_value",
"tags": [],
"reasons": {}
},
{
"tool": "portfolio_pnl",
"tags": [],
"reasons": {}
},
{
"tool": "portfolio_risk",
"tags": [],
"reasons": {}
},
{
"tool": "escrow_create",
"tags": [],
"reasons": {}
},
{
"tool": "escrow_status",
"tags": [],
"reasons": {}
},
{
"tool": "escrow_resolve",
"tags": [],
"reasons": {}
},
{
"tool": "escrow_list",
"tags": [],
"reasons": {}
},
{
"tool": "lending_liquidations",
"tags": [],
"reasons": {}
},
{
"tool": "portfolio_taxlots",
"tags": [],
"reasons": {}
},
{
"tool": "scout_rankings",
"tags": [],
"reasons": {}
},
{
"tool": "scout_service",
"tags": [],
"reasons": {}
}
],
"surfaceDigest": "26f151c2d62e5ee83eeec137cd075f3161772fb5e4c4541e28e31784ab330108",
"stats": {
"tools": 159,
"prompts": 0,
"resources": 0,
"findingsBySeverity": {
"critical": 0,
"high": 4,
"medium": 5,
"low": 4,
"info": 1
}
}
}