agentic-memory-stack-for-claude-code (dmmdea/agentic-memory-stack-for-claude-code) is an MCP server listed on the M8ven Trust Index. It scores 74 out of 100, grade C. It declares 29 tools. No publisher has claimed this listing.

C
Emerging
74/100

agentic-memory-stack-for-claude-code

Persistent, multi-tier, measurably-faithful memory backend for Claude Code on Windows + WSL2 (mem0 + Qdrant + EmbeddingGemma + Codex). Self-contained, operator-agnostic installer skill.

Emerging. No concerning findings. Grades remain capped until the project builds reputation through adoption. Grades reflect the full trust pyramid: code, verification depth, and reputation. New projects cap at C until adoption is earned.

How we verified

Code Verified⚡ Live Monitored: not connected

Verified is a snapshot. Live keeps it current, and builds your track record.

⚡ Connect GitHub → continuous verification on every pushwhy connect →

Who stands behind it

dmmdea

Source: github_repo_search

Is this your MCP?

Claim it to get a verified publisher badge, a free copy of our full audit findings, and direct contact for any high-priority issues we find. Or connect your repo for our deepest verification, Live Monitored: read-only, revoke anytime. What we access →

Install from

The grade above is for the source repository. Registries can serve a different version, so we mark the ones we were not able to read.

// key findings
No credential exfiltration, no sensitive file access, no obfuscation
Static analysis found nothing flowing your secrets to unexpected places.
Open source with a license and README
Anyone can audit the code, the license is declared, and the publisher documents what it does.
🔐
You'll be asked for 3 credentials: MEM0_KEY, JOBS_IDEMPOTENCY_KEY, MEM0_API_KEY
These are read from process.env at runtime. Make sure you trust where they’ll be sent.
// tools this server exposes29 tools

These names and descriptions are the publisher's own, read from the source code. We print them as written. Our assessment is the findings above, not this list.

memory_add

Add a memory to mem0. Set infer=False to store as-is; True to LLM-extract facts. metadata dict can include {source, tier, kind, workspace, project, ...}.

memory_search

Semantic search over mem0. Returns up to `limit` memories above `threshold`. Auto-reranks via the bge cross-encoder when limit>=5 (measured 2026-06-22 to IMPROVE relevance — blind Codex A/B 7/11; adds ~2s on this CPU box, fine for a DELIBERATE search, and NOT on the <500ms per-prompt bundle). Pass r

memory_recall

PROACTIVELY pull the memory the task you are about to start depends on — the SAME admission-gated, brand-scoped, ranked context the per-prompt UserPromptSubmit hook USED to inject before that hook went dead in this runtime (VS Code extension / Agent SDK). Call it at the START of any substantive task

memory_list

List recent memories for user_id. Hard-capped server-side at 500. Prefer memory_search for content discovery; this is for inventory.

memory_delete

Delete a memory by its ID.

memory_update

Update a memory's text content.

memory_promote

Promote a memory's trust tier. tier in {evidence, stable, insight, temporal}.

memory_demote

Demote a memory's trust tier (e.g., stable -> evidence when wrong). For full removal use memory_delete. Writes a tier-ledger entry. actor is always 'claude-autonomous' when called via MCP. reason is recommended for audit clarity.

memory_health

Check mem0 server health: store, embedder, and canonical-key end to end.

episodic_search

Search past episodic memory (sessions) by keyword + optional date range + brand filter.

episodic_recent

Return the last N episodes ordered by ended_at descending.

episodic_get

Fetch full detail for one episode by its integer id.

goals_list

List goals with optional status/brand filters. status ∈ {open, blocked, advanced, completed, abandoned}. Use for 'show me all open goals for MyApp' / 'what's the goal landscape?'.

goals_tree

Recursive goal tree (adjacency-list hierarchy). If root_id is None, returns all top-level goals + descendants with depth field. Use for 'show me the goal hierarchy' / 'what's the structure of my plans?'.

goals_open

Convenience: list open goals. Use for 'what am I currently working on?'.

goals_blocked

Convenience: list blocked goals. Use for 'what's stuck right now?' / 'show me blockers'.

goal_details

Full goal detail including linked_episode_count and parent reference. Use to investigate a specific goal.

goal_create_manual

Create a top-level or child goal directly (operator-direct, not auto-extracted from sessions). Use when the operator says 'add a goal: ship X by Y'.

goal_abandon

Abandon a goal as no-longer-relevant. Distinct from 'completed' (which means goal was achieved). Use when scope changed, priority dropped, or goal was redundant with another. Requires a non-empty reason — this is a deliberate trash-can move; document why.

goal_complete

Mark a goal as completed — the work shipped / the goal was achieved. Distinct from 'abandon' (which means scope dropped or the goal became infeasible). Use this when a goal's deliverable is actually done so it stops bleeding into every session's surfaced context. Sets completed_at and stamps a goal-

memory_get_by_id

Exact read by memory_id. Returns text, metadata, tier, retrievable, source, timestamps.

memory_diagnose

W5 (ADOPT-2): why does memory `target_id` not surface for `query`?

goal_set_priority

Update a goal's priority (1=highest, 5=lowest). v0.17 F.3.2. Use when a goal's urgency changes relative to other open goals.

goal_link_episode

Explicitly link an episode to a goal. link_type ∈ {advanced_goal, blocked_goal, completed_goal, cited_goal}. Use when a session advanced a goal but auto-extraction from the Stop hook missed it. v0.17 F.3.2.

goal_merge

Merge source goal into target: move all episode links + mark source as 'duplicate'. Use when two goals turn out to be the same thing (duplicate created by auto-extraction). Source stays in DB for audit but is excluded from default listings. v0.17 F.3.2.

open_questions_open

List current open frontier questions (Epistemic Reachability signal). Filter by brand. Default limit 7 = Miller's working-memory anchor.

open_question_search

FTS5 keyword search across open questions. status='all' to include resolved.

open_question_resolve

Mark a frontier question as resolved with a resolution summary.

open_question_details

Full detail on a frontier question including related goal title.

// environment variables
To run this server yourself, you supply these values. They go in your own MCP client configuration and stay on your machine. The secret label means the value is sensitive, not that the server mishandles it.
configMEM0_DEFAULT_USER_ID
configMEM0_STACK_VERSION
configMEM0_MAX_MEMORY_CHARS
configMEM0_ZFS_DATASET
configMEM0_SEARCH_OVERFETCH_BUFFER
configMEM0_OPERATIONAL_HALF_LIFE_DAYS
configMEM0_WEIBULL_KAPPA
configMEM0_DURABLE_FRESHNESS_HALF_LIFE_DAYS
configMEM0_LOG_FULL_QUERY
configMEM0_LOG_HASH_FILTERS
configMEM0_URL
configMEM0_RELEVANCE_FLOOR_OPERATIONAL
configMEM0_BRAND_COHERENCE_THRESHOLD
configMEM0_API_KEY_FILE
configXDG_RUNTIME_DIR
configCREDENTIALS_DIRECTORY
configMEM0_CODEX_SHIM_URL
configMEM0_CODEX_TRANSPORT
configMEM0_HOST_KIND
🔐 secretMEM0_KEY
configFASTEMBED_CACHE_PATH
configQDRANT_URL
configMEM0_COLLECTION
configMEM0_HISTORY_DB
configMEM0_BACKUP_DIR
configMEM0_AMS01_REPORT
configMEM0_AMS01_RECEIPTS
configMEM0_AMS01_TMP_COLLECTION
configCODEX_HOME
configMEM0_EVAL_ROOT
configMEM0_BM25_REPORT
configMEM0_BM25_RECEIPTS
configMEM0_QDRANT_COLLECTION
🔐 secretJOBS_IDEMPOTENCY_KEY
configMEM0_EPISODES_COLLECTION
configMEM0_EPISODIC_DB
configMEM0_EMBED_URL
configMEM0_EMBED_MODEL
configMEM0_CP437_REPORT
configMEM0_CP437_RECEIPTS
configMEM0_PROMOTION_GATE_MODE
🔐 secretMEM0_API_KEY
configMEM0_QDRANT_URL
configMEM0_SIDECAR_DIR
configMEM0_WSL_DISTRO
configMEM0_WSL_USER
configMEM0_SHARED_DRIVE_DIR
configMEM0_FOREIGN_HOSTS
configMEM0_LOCAL_HOST
configMEM0_SHARED_DRIVE_LETTERS
configMEM0_HOME
// quality suggestions

Tool annotations

No tools have read-only/destructive annotations

Add readOnlyHint or destructiveHint annotations to every tool so hosts can warn users before invoking.

All four hints declared on every tool

29/29 tools missing one or more hints — memory_add (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint); memory_search (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint); memory_recall (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint), +26 more. OpenAI's directory rejects tools where any of the four hints are missing or non-boolean.

For every tool, set all four hints (readOnlyHint, destructiveHint, idempotentHint, openWorldHint) to explicit true/false values that match the handler’s actual behaviour.

Tool test coverage

12/29 tools referenced in tests (41%)

Write tests that reference each tool by name so every tool has at least one test.

Claim the listing to review these findings one by one and send us a correction where you disagree, straight to the team. Claiming also means we tell you when the grade moves, and reach you first if we find anything urgent.

// full audit trail
The findings above are the summary. The full trail, every check we ran, each deduction, the network hosts observed and the dependency advisories, goes to verified publishers, along with an alert whenever a new one lands. Verified publishers can also review each finding and dispute it in one click. Publisher corrections have sharpened several of our checks this month, because the maintainer knows the codebase better than any scanner.
// improvement guidance — verified publishers only
We have 3 concrete improvements we can share with the publisher of this MCP. Each comes with specific guidance to raise the trust score.
// embed badge in your README
[![M8ven Score](https://m8ven.ai/badge/mcp/dmmdea/agentic-memory-stack-for-claude-code)](https://m8ven.ai/mcp/dmmdea/agentic-memory-stack-for-claude-code)
Shows your grade and updates automatically. Prefer no grade? Append ?variant=verified to the badge URL.
commit: 8d8b5944d599b830ccdf4164c71f56a8fe8b8807
code hash: 06eb37158a93ba1ef42b647f2a10e183e5ac8dc31e6501ef248a5bab99417330
view raw JSON →
Check MCPs from inside your assistant
Tool Check · MCP

Vetting this one by hand? Tool Check is an MCP that scores other MCPs. Add it once and ask Claude, ChatGPT, or any MCP client to grade a server, surface CVEs, check the publisher, and suggest safer alternatives — before you install.

https://m8ven.ai/api/mcp/tool-check
check_toolsearch_toolscompare_toolsrecommend_alternativescheck_publisherreport_concern
How to add it →Free · no account needed · works in any MCP client