Raw scan report

Okx Trade — 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": "@okx_ai/okx-trade-mcp",
    "source": {
      "kind": "package",
      "origin": "@okx_ai/okx-trade-mcp"
    },
    "server": {
      "name": "@okx_ai/okx-trade-mcp"
    }
  },
  "grade": "A",
  "score": {
    "score": 91,
    "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": "none",
        "label": "publisher verification (unlinked) — no provenance/repo link, but the shipped source was fully read",
        "appliedPenalty": 2
      },
      {
        "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": [
      "ingests untrusted external content (a prompt-injection entry point)",
      "reads sensitive or local data",
      "has a read → egress path (a data-exfiltration surface)",
      "can execute shell commands or code"
    ],
    "tags": [
      "untrusted-input",
      "sensitive-source",
      "code-exec"
    ]
  },
  "coverage": {
    "level": "source",
    "inputs": {
      "toolSurface": true,
      "implementationSource": true,
      "packageMetadata": true,
      "liveTransport": false
    },
    "caveats": [
      "Tools were statically extracted from the published source (200 recovered), not enumerated from a running server. Tool-poisoning, Unicode-smuggling, capability and toxic-flow analysis ran on this inferred surface, but a mis-parsed registration could be missed or mis-attributed, so tool-derived findings are capped below “confirmed”. To grade the real runtime surface, scan the running server: --command \"npx -y <package>\"."
    ]
  },
  "findings": [
    {
      "ruleId": "MTC-SRC-006",
      "title": "Reads a sensitive credential path or dumps the environment (dist/index.js)",
      "category": "exfiltration",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`dist/index.js:12540`): Reading private keys / cloud credentials, or serializing the whole environment, is a sensitive-data source that becomes exfiltration when combined with any egress. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.",
      "remediation": "Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.",
      "location": {
        "kind": "server",
        "name": "dist/index.js"
      },
      "evidence": ") { add(join10(dir, \".npmrc\")); if (dir === root) break; const parent = join10(dir, \"..\"); if (parent ==",
      "owasp": "LLM02:2025 Sensitive Information Disclosure",
      "data": {
        "rule": "MTC-SRC-006",
        "file": "dist/index.js",
        "line": 12540,
        "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:13`): 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": "port { execFile } from \"child_process\"; import { homedir } from \"os\"; import { join } from \"path\"; import { readFileSy",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "dist/index.js",
        "line": 13,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SUP-010",
      "title": "Package runs install-time scripts (postinstall)",
      "category": "supply-chain",
      "severity": "low",
      "confidence": "heuristic",
      "description": "\"@okx_ai/okx-trade-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": "@okx_ai/okx-trade-mcp"
      },
      "evidence": "node scripts/postinstall.js || exit 0",
      "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"
        ]
      }
    },
    {
      "ruleId": "MTC-SUP-011",
      "title": "Package declares no source repository",
      "category": "supply-chain",
      "severity": "info",
      "confidence": "strong",
      "description": "\"@okx_ai/okx-trade-mcp\" declares no repository URL, so its published artifact cannot be compared against reviewable source.",
      "remediation": "Prefer packages that link to public, reviewable source.",
      "location": {
        "kind": "package",
        "name": "@okx_ai/okx-trade-mcp"
      }
    }
  ],
  "toxicFlows": [],
  "capabilities": [
    {
      "tool": "ma",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ema",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "wma",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dema",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "tema",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "zlema",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "hma",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "kama",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "macd",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "sar",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "adx",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "aroon",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "cci",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dpo",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "envelope",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "halftrend",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "alphatrend",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "rsi",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "stoch-rsi",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "stoch",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "roc",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "mom",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ppo",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "trix",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ao",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "uo",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "wr",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "bb",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "boll",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "bbwidth",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "bbpct",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "atr",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "keltner",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "donchian",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "hv",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "stddev",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "obv",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "vwap",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "mvwap",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "cmf",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "mfi",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ad",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "lr",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "slope",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "angle",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "variance",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "meandev",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "sigma",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "stderr",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "kdj",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "supertrend",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "tenkan",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "kijun",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "senkoa",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "senkob",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "chikou",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "doji",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "bull-engulf",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "bear-engulf",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "bull-harami",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "bear-harami",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "bull-harami-cross",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "bear-harami-cross",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "three-soldiers",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "three-crows",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "hanging-man",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "inverted-hammer",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "shooting-star",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ahr999",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "rainbow",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "fisher",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "nvi-pvi",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "pmax",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "qqe",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "tdi",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "waddah",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "range-filter",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "cho",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "tr",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "tp",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "mp",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "top-long-short",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "market_get_indicator",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "market_list_indicators",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "account_get_balance",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "account_transfer",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "account_get_max_size",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "account_get_asset_balance",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "account_get_bills",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "account_get_positions_history",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "account_get_trade_fee",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "account_get_config",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "account_get_max_withdrawal",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "account_get_max_avail_size",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "account_get_positions",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "account_get_bills_archive",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "account_set_position_mode",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "account_get_balance_all",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "swap_place_algo_order",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "swap_place_move_stop_order",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "swap_cancel_algo_orders",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "swap_get_algo_orders",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "futures_place_algo_order",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "futures_place_move_stop_order",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "futures_amend_algo_order",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "futures_cancel_algo_orders",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "futures_get_algo_orders",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "trade_get_history",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "skills_get_categories",
      "tags": [
        "untrusted-input"
      ],
      "reasons": {
        "untrusted-input": [
          "keyword \"download\""
        ]
      }
    },
    {
      "tool": "skills_search",
      "tags": [
        "untrusted-input"
      ],
      "reasons": {
        "untrusted-input": [
          "keyword \"download\""
        ]
      }
    },
    {
      "tool": "skills_download",
      "tags": [
        "untrusted-input"
      ],
      "reasons": {
        "untrusted-input": [
          "keyword \"download\""
        ]
      }
    },
    {
      "tool": "grid_get_orders",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "grid_get_order_details",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "grid_get_sub_orders",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "grid_create_order",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "grid_amend_order",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "grid_stop_order",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "grid_get_positions",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "grid_get_liquidate_price",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "grid_close_position",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dca_create_order",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dca_stop_order",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dca_get_orders",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dca_get_order_details",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dca_get_sub_orders",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "earn_get_savings_balance",
      "tags": [
        "untrusted-input"
      ],
      "reasons": {
        "untrusted-input": [
          "keyword \"browse\""
        ]
      }
    },
    {
      "tool": "earn_get_fixed_order_list",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "earn_savings_purchase",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "earn_savings_redeem",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "earn_set_lending_rate",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "earn_get_lending_history",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "earn_fixed_purchase",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "earn_fixed_redeem",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "earn_get_lending_rate_history",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "earn_get_fixed_earn_products",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "onchain_earn_get_offers",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "onchain_earn_purchase",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "onchain_earn_redeem",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "onchain_earn_cancel",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "onchain_earn_get_active_orders",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "onchain_earn_get_order_history",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dcd_get_currency_pairs",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dcd_get_products",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dcd_get_order_state",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dcd_get_orders",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dcd_subscribe",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dcd_redeem",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "earn_auto_set",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "earn_get_flash_earn_projects",
      "tags": [
        "untrusted-input"
      ],
      "reasons": {
        "untrusted-input": [
          "keyword \"browse\""
        ]
      }
    },
    {
      "tool": "event_browse",
      "tags": [
        "untrusted-input"
      ],
      "reasons": {
        "untrusted-input": [
          "keyword \"browse\""
        ]
      }
    },
    {
      "tool": "event_get_series",
      "tags": [
        "untrusted-input"
      ],
      "reasons": {
        "untrusted-input": [
          "keyword \"browse\""
        ]
      }
    },
    {
      "tool": "event_get_events",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "event_get_markets",
      "tags": [
        "untrusted-input"
      ],
      "reasons": {
        "untrusted-input": [
          "keyword \"browse\""
        ]
      }
    },
    {
      "tool": "event_get_orders",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "event_get_fills",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "event_place_order",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "event_amend_order",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "event_cancel_order",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "smartmoney_get_traders_by_filter",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "smartmoney_get_performance_by_trader",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "smartmoney_get_trader_positions",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "smartmoney_get_trader_positions_history",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "smartmoney_get_trader_orders_history",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "smartmoney_search_trader",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "smartmoney_get_signal_overview_by_filter",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "smartmoney_get_signal_overview_by_trader",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "smartmoney_get_signal_trend_by_filter",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "smartmoney_get_signal_trend_by_trader",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "futures_amend_order",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "futures_batch_orders",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "market_get_ticker",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "market_get_tickers",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "market_get_orderbook",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "market_get_candles",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "market_get_instruments",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "market_get_funding_rate",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "market_get_mark_price",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "market_get_trades",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "market_get_index_ticker",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "market_get_index_candles",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "market_get_price_limit",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "market_get_open_interest",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "market_get_stock_tokens",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "market_get_instruments_by_category",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "market_filter",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "market_get_oi_history",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "market_filter_oi_change",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "market_get_pair_spread",
      "tags": [
        "untrusted-input"
      ],
      "reasons": {
        "untrusted-input": [
          "keyword \"fetch\""
        ]
      }
    },
    {
      "tool": "news_get_latest",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "news_get_by_coin",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "news_search",
      "tags": [
        "untrusted-input"
      ],
      "reasons": {
        "untrusted-input": [
          "keyword \"browse\""
        ]
      }
    },
    {
      "tool": "news_get_detail",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "news_get_domains",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "news_get_coin_sentiment",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "news_get_sentiment_ranking",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "news_list_calendar_regions",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "news_get_economic_calendar",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "option_place_algo_order",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "option_amend_algo_order",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "option_cancel_algo_orders",
      "tags": [],
      "reasons": {}
    }
  ],
  "surfaceDigest": "0584dc7a6bc3c17d9b356e5deacdcc91a1e313b91254f308999e9eda9e307f40",
  "stats": {
    "tools": 200,
    "prompts": 0,
    "resources": 0,
    "findingsBySeverity": {
      "critical": 0,
      "high": 2,
      "medium": 0,
      "low": 1,
      "info": 1
    }
  }
}