Total Agent Memory MCP Server

total-agent-memory PyPI v12.4.0

Published by vbcherepanov — no publish provenance, so origin is unverified, but the source is public: the repository link below is self-declared yet readable, so you can inspect the code before adopting it.

Trust grade
B
89/100
Last scanned get badge →
Trust
B · 89/100
Adoption risk for you: the threat score, then adjusted down for blast radius, publisher verification and how much the scan could see. Deterministic; every point is auditable.
Capability
Critical
Blast radius if it went rogue — what the server’s tools could reach. Independent of trust.
Coverage
Source
How much the scan could actually inspect. Shallow coverage is stated, never hidden.
B Why this grade threat 100 − adoption risk = 89/100

The grade answers one question — how safe is this server for you to adopt — so it is computed in two auditable stages. Nothing below is an opinion or an LLM's guess; every line is a real term the deterministic engine applied, and the same input always yields the same number.

1. Threat score — 100 − 0 = 100. What the published surface and source actually contain:

The deterministic scan raised no scored threat in the surface it inspected — the threat score stayed at 100. Capability observations and advisory notes are recorded but never lower it.

2. Client adoption risk — 100 − 11 = 89. Three small, subtract-only factors that reflect your risk in adopting it — a clean scan proves less on a powerful, unverified or barely-inspectable package, so the grade says so plainly:

PointsAdoption-risk factor
−10 capability blast radius (critical) — client exposure if the model is manipulated
−1 publisher verification (public source) — no provenance, but the source is public and inspectable

Capability observations and info notes are shown under Findings but never scored. Open any row's finding below for the file, line and evidence behind a deduction.

Findings 23

critical Completed toxic-flow trifecta across toolsMTC-FLOW-002

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.

Fix: 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: flow memory_get → memory_perf_report → memory_eval_contradictions

high Tool "memory_eval_locomo" exposes command/code executionMTC-CAP-001

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.

Fix: Sandbox execution, allowlist commands/arguments, and never pass model output to a shell unescaped.

Location: tool memory_eval_locomo

high Tool "memory_eval_recall" exposes command/code executionMTC-CAP-001

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.

Fix: Sandbox execution, allowlist commands/arguments, and never pass model output to a shell unescaped.

Location: tool memory_eval_recall

high Tool "memory_eval_temporal" exposes command/code executionMTC-CAP-001

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.

Fix: Sandbox execution, allowlist commands/arguments, and never pass model output to a shell unescaped.

Location: tool memory_eval_temporal

high Tool "memory_eval_entity_consistency" exposes command/code executionMTC-CAP-001

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.

Fix: Sandbox execution, allowlist commands/arguments, and never pass model output to a shell unescaped.

Location: tool memory_eval_entity_consistency

high Tool "memory_eval_contradictions" exposes command/code executionMTC-CAP-001

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.

Fix: Sandbox execution, allowlist commands/arguments, and never pass model output to a shell unescaped.

Location: tool memory_eval_contradictions

high Tool "memory_eval_long_context" exposes command/code executionMTC-CAP-001

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.

Fix: Sandbox execution, allowlist commands/arguments, and never pass model output to a shell unescaped.

Location: tool memory_eval_long_context

high Shell/command execution in server code (src/dashboard.py)MTC-SRC-002

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.

Evidence: try: result = subprocess.run( ["launchctl", "list"], capture_output=True, text=True, t

Fix: 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: server src/dashboard.py

high Shell/command execution in server code (src/reflection/scheduler.py)MTC-SRC-002

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.

Evidence: = "1" result = subprocess.run( [OLLAMA_BIN, "run", model, prompt], capture_output=True,

Fix: 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: server src/reflection/scheduler.py

high Shell/command execution in server code (src/server.py)MTC-SRC-002

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.

Evidence: try: return subprocess.check_output( ["git", "rev-parse", "--abbrev-ref", "HEAD"], s

Fix: 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: server src/server.py

high Shell/command execution in server code (src/tools/brain_autonomy.py)MTC-SRC-002

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.

Evidence: = "1" result = subprocess.run( [OLLAMA_BIN, "run", model, prompt], capture_output=True,

Fix: 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: server src/tools/brain_autonomy.py

high Shell/command execution in server code (src/tools/brain_health.py)MTC-SRC-002

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.

Evidence: try: proc = subprocess.run( ["launchctl", "list"], capture_output=True,

Fix: 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: server src/tools/brain_health.py

high Shell/command execution in server code (src/tools/check_updates.py)MTC-SRC-002

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.

Evidence: n None try: subprocess.run( ["git", "fetch", "--tags", "--quiet"], cwd=ROOT, check=True, timeout

Fix: 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: server src/tools/check_updates.py

high Shell/command execution in server code (src/tools/cross_project.py)MTC-SRC-002

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.

Evidence: = "1" result = subprocess.run( [OLLAMA_BIN, "run", model, prompt], capture_output=True,

Fix: 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: server src/tools/cross_project.py

high Shell/command execution in server code (src/tools/git_observer.py)MTC-SRC-002

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.

Evidence: = "1" result = subprocess.run( [OLLAMA_BIN, "run", model, prompt], capture_output=True,

Fix: 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: server src/tools/git_observer.py

high Shell/command execution in server code (src/tools/idea_engine.py)MTC-SRC-002

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.

Evidence: = "1" result = subprocess.run( [OLLAMA_BIN, "run", model, prompt], capture_output=True,

Fix: 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: server src/tools/idea_engine.py

high Shell/command execution in server code (src/tools/improve_search.py)MTC-SRC-002

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.

Evidence: try: result = subprocess.run( ["/usr/local/bin/ollama", "list"], capture_output=True,

Fix: 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: server src/tools/improve_search.py

low Mutating tool "memory_eval_locomo" declares no destructiveHintMTC-CAP-005

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.

Fix: Declare accurate annotations, and gate destructive tools on user confirmation regardless.

Location: tool memory_eval_locomo

low Mutating tool "memory_eval_recall" declares no destructiveHintMTC-CAP-005

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.

Fix: Declare accurate annotations, and gate destructive tools on user confirmation regardless.

Location: tool memory_eval_recall

low Mutating tool "memory_eval_temporal" declares no destructiveHintMTC-CAP-005

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.

Fix: Declare accurate annotations, and gate destructive tools on user confirmation regardless.

Location: tool memory_eval_temporal

low Mutating tool "memory_eval_entity_consistency" declares no destructiveHintMTC-CAP-005

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.

Fix: Declare accurate annotations, and gate destructive tools on user confirmation regardless.

Location: tool memory_eval_entity_consistency

low Mutating tool "memory_eval_contradictions" declares no destructiveHintMTC-CAP-005

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.

Fix: Declare accurate annotations, and gate destructive tools on user confirmation regardless.

Location: tool memory_eval_contradictions

low Mutating tool "memory_eval_long_context" declares no destructiveHintMTC-CAP-005

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.

Fix: Declare accurate annotations, and gate destructive tools on user confirmation regardless.

Location: tool memory_eval_long_context

Tools 74

Each tool and what it can reach — statically extracted from the published source.

  • memory_eval_contradictionsruns code / shell
  • memory_eval_entity_consistencyruns code / shell
  • memory_eval_locomoruns code / shell
  • memory_eval_long_contextruns code / shell
  • memory_eval_recallruns code / shell
  • memory_eval_temporalruns code / shell
  • memory_getingests untrusted input
  • memory_perf_reportreads sensitive data
  • memory_timelineingests untrusted input
  • analogizeno sensitive capability
Show 64 more tools ↓
  • benchmarkno sensitive capability
  • classify_taskno sensitive capability
  • file_contextno sensitive capability
  • ingest_codebaseno sensitive capability
  • kg_add_factno sensitive capability
  • kg_atno sensitive capability
  • kg_invalidate_factno sensitive capability
  • kg_timelineno sensitive capability
  • learn_errorno sensitive capability
  • list_intentsno sensitive capability
  • memory_associateno sensitive capability
  • memory_conceptsno sensitive capability
  • memory_consolidateno sensitive capability
  • memory_consolidate_statusno sensitive capability
  • memory_context_buildno sensitive capability
  • memory_deleteno sensitive capability
  • memory_entity_resolveno sensitive capability
  • memory_episode_recallno sensitive capability
  • memory_episode_saveno sensitive capability
  • memory_explain_searchno sensitive capability
  • memory_exportno sensitive capability
  • memory_extract_sessionno sensitive capability
  • memory_forgetno sensitive capability
  • memory_graphno sensitive capability
  • memory_graph_indexno sensitive capability
  • memory_graph_statsno sensitive capability
  • memory_historyno sensitive capability
  • memory_observeno sensitive capability
  • memory_rebuild_embeddingsno sensitive capability
  • memory_rebuild_ftsno sensitive capability
  • memory_recallno sensitive capability
  • memory_recall_iterativeno sensitive capability
  • memory_reflect_nowno sensitive capability
  • memory_relateno sensitive capability
  • memory_saveno sensitive capability
  • memory_save_fastno sensitive capability
  • memory_search_by_tagno sensitive capability
  • memory_search_fastno sensitive capability
  • memory_self_assessno sensitive capability
  • memory_skill_getno sensitive capability
  • memory_skill_updateno sensitive capability
  • memory_statsno sensitive capability
  • memory_temporal_queryno sensitive capability
  • memory_updateno sensitive capability
  • memory_warmupno sensitive capability
  • memory_wiki_generateno sensitive capability
  • phase_transitionno sensitive capability
  • rule_set_phaseno sensitive capability
  • save_decisionno sensitive capability
  • save_intentno sensitive capability
  • search_intentsno sensitive capability
  • self_error_logno sensitive capability
  • self_insightno sensitive capability
  • self_patternsno sensitive capability
  • self_reflectno sensitive capability
  • self_rulesno sensitive capability
  • self_rules_contextno sensitive capability
  • session_endno sensitive capability
  • session_initno sensitive capability
  • task_createno sensitive capability
  • task_phases_listno sensitive capability
  • workflow_learnno sensitive capability
  • workflow_predictno sensitive capability
  • workflow_trackno sensitive capability

Toxic flows 1

Cross-tool combinations that form a data-exfiltration primitive (untrusted input → sensitive source → external sink).

What this scan could not see

Versions 1

Scan history per published version. The engine is deterministic — the same version always yields the same score, so a changed score means the package itself changed.

VersionScoreFindingsEngineScanned
v12.4.0 latest B 89/100 23 1.9.0 2026-07-23

Embed this score

Show this server's live Trust Score in your README, docs or website. The badge is served straight from the registry and updates automatically after every rescan — no API key needed. It links back to this page, so anyone who sees the grade can also read the findings behind it instead of taking a number on faith.

MCP Trust Score: B · 89/100
Markdown (GitHub README)
[![MCP Trust Score](https://mcptrustchecker.com/registry/total-agent-memory/badge.svg)](https://mcptrustchecker.com/registry/total-agent-memory)
HTML
<a href="https://mcptrustchecker.com/registry/total-agent-memory"><img src="https://mcptrustchecker.com/registry/total-agent-memory/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/total-agent-memory/badge.json via https://img.shields.io/endpoint?url=…

Verify this score yourself

The score above is reproducible: the same package version always yields the same result. Run it locally or over the free API — no account, no LLM, fully deterministic.

npx mcptrustchecker scan total-agent-memory --online --registry pypi

Use the free API → How scoring works

More in Developer Tools