Raw scan report

Total Agent Memory — 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": "total-agent-memory",
    "source": {
      "kind": "package",
      "origin": "total-agent-memory"
    },
    "server": {
      "name": "total-agent-memory"
    }
  },
  "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)",
      "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",
      "code-exec"
    ]
  },
  "coverage": {
    "level": "source",
    "inputs": {
      "toolSurface": true,
      "implementationSource": true,
      "packageMetadata": true,
      "liveTransport": false
    },
    "caveats": [
      "Tools were statically extracted from the published source (74 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: memory_get → memory_perf_report → memory_eval_contradictions. 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": "memory_get → memory_perf_report → memory_eval_contradictions"
      },
      "owasp": "LLM02:2025 Sensitive Information Disclosure",
      "references": [],
      "data": {
        "untrusted": [
          "memory_timeline",
          "memory_get"
        ],
        "sources": [
          "memory_perf_report"
        ],
        "sinks": [
          "memory_eval_locomo",
          "memory_eval_recall",
          "memory_eval_temporal",
          "memory_eval_entity_consistency",
          "memory_eval_contradictions",
          "memory_eval_long_context"
        ],
        "path": [
          "memory_get",
          "memory_perf_report",
          "memory_eval_contradictions"
        ],
        "edges": [
          {
            "from": "memory_get",
            "to": "memory_perf_report",
            "kind": "agent-mediated"
          },
          {
            "from": "memory_perf_report",
            "to": "memory_eval_contradictions",
            "kind": "agent-mediated"
          }
        ],
        "wired": false
      }
    },
    {
      "ruleId": "MTC-CAP-001",
      "title": "Tool \"memory_eval_locomo\" exposes command/code execution",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "Tool \"memory_eval_locomo\" appears to run shell commands or evaluate code (keyword \"eval\" 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": "memory_eval_locomo"
      },
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "tags": [
          "code-exec"
        ]
      }
    },
    {
      "ruleId": "MTC-CAP-001",
      "title": "Tool \"memory_eval_recall\" exposes command/code execution",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "Tool \"memory_eval_recall\" appears to run shell commands or evaluate code (keyword \"eval\" 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": "memory_eval_recall"
      },
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "tags": [
          "code-exec"
        ]
      }
    },
    {
      "ruleId": "MTC-CAP-001",
      "title": "Tool \"memory_eval_temporal\" exposes command/code execution",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "Tool \"memory_eval_temporal\" appears to run shell commands or evaluate code (keyword \"eval\" 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": "memory_eval_temporal"
      },
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "tags": [
          "code-exec"
        ]
      }
    },
    {
      "ruleId": "MTC-CAP-001",
      "title": "Tool \"memory_eval_entity_consistency\" exposes command/code execution",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "Tool \"memory_eval_entity_consistency\" appears to run shell commands or evaluate code (keyword \"eval\" 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": "memory_eval_entity_consistency"
      },
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "tags": [
          "code-exec"
        ]
      }
    },
    {
      "ruleId": "MTC-CAP-001",
      "title": "Tool \"memory_eval_contradictions\" exposes command/code execution",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "Tool \"memory_eval_contradictions\" appears to run shell commands or evaluate code (keyword \"eval\" 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": "memory_eval_contradictions"
      },
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "tags": [
          "code-exec"
        ]
      }
    },
    {
      "ruleId": "MTC-CAP-001",
      "title": "Tool \"memory_eval_long_context\" exposes command/code execution",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "Tool \"memory_eval_long_context\" appears to run shell commands or evaluate code (keyword \"eval\" 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": "memory_eval_long_context"
      },
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "tags": [
          "code-exec"
        ]
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (src/dashboard.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`src/dashboard.py:811`): 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/dashboard.py"
      },
      "evidence": "try: result = subprocess.run( [\"launchctl\", \"list\"], capture_output=True, text=True, t",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "src/dashboard.py",
        "line": 811,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (src/reflection/scheduler.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`src/reflection/scheduler.py:218`): 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/reflection/scheduler.py"
      },
      "evidence": "= \"1\" result = subprocess.run( [OLLAMA_BIN, \"run\", model, prompt], capture_output=True,",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "src/reflection/scheduler.py",
        "line": 218,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (src/server.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`src/server.py:6828`): 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/server.py"
      },
      "evidence": "try: return subprocess.check_output( [\"git\", \"rev-parse\", \"--abbrev-ref\", \"HEAD\"], s",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "src/server.py",
        "line": 6828,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (src/tools/brain_autonomy.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`src/tools/brain_autonomy.py:57`): 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/tools/brain_autonomy.py"
      },
      "evidence": "= \"1\" result = subprocess.run( [OLLAMA_BIN, \"run\", model, prompt], capture_output=True,",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "src/tools/brain_autonomy.py",
        "line": 57,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (src/tools/brain_health.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`src/tools/brain_health.py:57`): 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/tools/brain_health.py"
      },
      "evidence": "try: proc = subprocess.run( [\"launchctl\", \"list\"], capture_output=True,",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "src/tools/brain_health.py",
        "line": 57,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (src/tools/check_updates.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`src/tools/check_updates.py:63`): 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/tools/check_updates.py"
      },
      "evidence": "n None try: subprocess.run( [\"git\", \"fetch\", \"--tags\", \"--quiet\"], cwd=ROOT, check=True, timeout",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "src/tools/check_updates.py",
        "line": 63,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (src/tools/cross_project.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`src/tools/cross_project.py:132`): 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/tools/cross_project.py"
      },
      "evidence": "= \"1\" result = subprocess.run( [OLLAMA_BIN, \"run\", model, prompt], capture_output=True,",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "src/tools/cross_project.py",
        "line": 132,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (src/tools/git_observer.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`src/tools/git_observer.py:136`): 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/tools/git_observer.py"
      },
      "evidence": "= \"1\" result = subprocess.run( [OLLAMA_BIN, \"run\", model, prompt], capture_output=True,",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "src/tools/git_observer.py",
        "line": 136,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (src/tools/idea_engine.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`src/tools/idea_engine.py:78`): 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/tools/idea_engine.py"
      },
      "evidence": "= \"1\" result = subprocess.run( [OLLAMA_BIN, \"run\", model, prompt], capture_output=True,",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "src/tools/idea_engine.py",
        "line": 78,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (src/tools/improve_search.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`src/tools/improve_search.py:72`): 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/tools/improve_search.py"
      },
      "evidence": "try: result = subprocess.run( [\"/usr/local/bin/ollama\", \"list\"], capture_output=True,",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "src/tools/improve_search.py",
        "line": 72,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-CAP-005",
      "title": "Mutating tool \"memory_eval_locomo\" declares no destructiveHint",
      "category": "hygiene",
      "severity": "low",
      "confidence": "heuristic",
      "description": "Tool \"memory_eval_locomo\" 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": "memory_eval_locomo"
      },
      "data": {
        "tags": [
          "code-exec"
        ]
      }
    },
    {
      "ruleId": "MTC-CAP-005",
      "title": "Mutating tool \"memory_eval_recall\" declares no destructiveHint",
      "category": "hygiene",
      "severity": "low",
      "confidence": "heuristic",
      "description": "Tool \"memory_eval_recall\" 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": "memory_eval_recall"
      },
      "data": {
        "tags": [
          "code-exec"
        ]
      }
    },
    {
      "ruleId": "MTC-CAP-005",
      "title": "Mutating tool \"memory_eval_temporal\" declares no destructiveHint",
      "category": "hygiene",
      "severity": "low",
      "confidence": "heuristic",
      "description": "Tool \"memory_eval_temporal\" 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": "memory_eval_temporal"
      },
      "data": {
        "tags": [
          "code-exec"
        ]
      }
    },
    {
      "ruleId": "MTC-CAP-005",
      "title": "Mutating tool \"memory_eval_entity_consistency\" declares no destructiveHint",
      "category": "hygiene",
      "severity": "low",
      "confidence": "heuristic",
      "description": "Tool \"memory_eval_entity_consistency\" 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": "memory_eval_entity_consistency"
      },
      "data": {
        "tags": [
          "code-exec"
        ]
      }
    },
    {
      "ruleId": "MTC-CAP-005",
      "title": "Mutating tool \"memory_eval_contradictions\" declares no destructiveHint",
      "category": "hygiene",
      "severity": "low",
      "confidence": "heuristic",
      "description": "Tool \"memory_eval_contradictions\" 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": "memory_eval_contradictions"
      },
      "data": {
        "tags": [
          "code-exec"
        ]
      }
    },
    {
      "ruleId": "MTC-CAP-005",
      "title": "Mutating tool \"memory_eval_long_context\" declares no destructiveHint",
      "category": "hygiene",
      "severity": "low",
      "confidence": "heuristic",
      "description": "Tool \"memory_eval_long_context\" 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": "memory_eval_long_context"
      },
      "data": {
        "tags": [
          "code-exec"
        ]
      }
    },
    {
      "ruleId": "MTC-SUP-012",
      "title": "Package has no license",
      "category": "hygiene",
      "severity": "info",
      "confidence": "strong",
      "description": "\"total-agent-memory\" has no declared license. This is a legal/reuse concern, not a security finding.",
      "location": {
        "kind": "package",
        "name": "total-agent-memory"
      }
    }
  ],
  "toxicFlows": [
    {
      "id": "flow-1",
      "severity": "critical",
      "confidence": "strong",
      "untrustedInput": [
        "memory_timeline",
        "memory_get"
      ],
      "sensitiveSource": [
        "memory_perf_report"
      ],
      "externalSink": [
        "memory_eval_locomo",
        "memory_eval_recall",
        "memory_eval_temporal",
        "memory_eval_entity_consistency",
        "memory_eval_contradictions",
        "memory_eval_long_context"
      ],
      "selfContained": false,
      "path": [
        "memory_get",
        "memory_perf_report",
        "memory_eval_contradictions"
      ],
      "pathWired": false,
      "description": "A cross-tool exfiltration chain exists: memory_get → memory_perf_report → memory_eval_contradictions."
    }
  ],
  "capabilities": [
    {
      "tool": "memory_recall",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_timeline",
      "tags": [
        "untrusted-input"
      ],
      "reasons": {
        "untrusted-input": [
          "keyword \"browse\""
        ]
      }
    },
    {
      "tool": "memory_save",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_update",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_stats",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_consolidate",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_export",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_forget",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_wiki_generate",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_get",
      "tags": [
        "untrusted-input"
      ],
      "reasons": {
        "untrusted-input": [
          "keyword \"fetch\""
        ]
      }
    },
    {
      "tool": "memory_history",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_delete",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_relate",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_search_by_tag",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_extract_session",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "self_error_log",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "self_insight",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "self_rules",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "self_patterns",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "self_reflect",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "self_rules_context",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "rule_set_phase",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_observe",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_associate",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_graph",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_concepts",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_episode_save",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_episode_recall",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_skill_get",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_skill_update",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_self_assess",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_context_build",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_reflect_now",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_graph_index",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_graph_stats",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "kg_add_fact",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "kg_invalidate_fact",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "kg_at",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "kg_timeline",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "workflow_learn",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "workflow_predict",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "workflow_track",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "file_context",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "learn_error",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "session_init",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "session_end",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ingest_codebase",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "analogize",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "benchmark",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_save_fast",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_search_fast",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_explain_search",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_warmup",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_perf_report",
      "tags": [
        "sensitive-source"
      ],
      "reasons": {
        "sensitive-source": [
          "keyword \"dump\""
        ]
      }
    },
    {
      "tool": "memory_rebuild_fts",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_rebuild_embeddings",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_eval_locomo",
      "tags": [
        "code-exec"
      ],
      "reasons": {
        "code-exec": [
          "keyword \"eval\" in tool name"
        ]
      }
    },
    {
      "tool": "memory_eval_recall",
      "tags": [
        "code-exec"
      ],
      "reasons": {
        "code-exec": [
          "keyword \"eval\" in tool name"
        ]
      }
    },
    {
      "tool": "memory_eval_temporal",
      "tags": [
        "code-exec"
      ],
      "reasons": {
        "code-exec": [
          "keyword \"eval\" in tool name"
        ]
      }
    },
    {
      "tool": "memory_eval_entity_consistency",
      "tags": [
        "code-exec"
      ],
      "reasons": {
        "code-exec": [
          "keyword \"eval\" in tool name"
        ]
      }
    },
    {
      "tool": "memory_eval_contradictions",
      "tags": [
        "code-exec"
      ],
      "reasons": {
        "code-exec": [
          "keyword \"eval\" in tool name"
        ]
      }
    },
    {
      "tool": "memory_eval_long_context",
      "tags": [
        "code-exec"
      ],
      "reasons": {
        "code-exec": [
          "keyword \"eval\" in tool name"
        ]
      }
    },
    {
      "tool": "classify_task",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "task_create",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "phase_transition",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "task_phases_list",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "save_intent",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_intents",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "search_intents",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "save_decision",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_recall_iterative",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_temporal_query",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_entity_resolve",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "memory_consolidate_status",
      "tags": [],
      "reasons": {}
    }
  ],
  "surfaceDigest": "7f4f1d6732cb1181e4c5083248b6476a68ddc3c066fb5bf5860779f4f2cac96a",
  "stats": {
    "tools": 74,
    "prompts": 0,
    "resources": 0,
    "findingsBySeverity": {
      "critical": 1,
      "high": 16,
      "medium": 0,
      "low": 6,
      "info": 1
    }
  }
}