Skip to main content

Memnest Memory MCP Server

PyPI version License: MIT Python 3.10+

Persistent graph memory for AI agents using LadybugDB — an embedded graph database with native vector search and full-text search.

Give your AI agent memory that persists across sessions, deduplicates automatically, and models knowledge as a graph with typed relationships.

Why Memnest?

  • Graph memory — memories linked via Topic nodes and relationships (RELATED_TO, SUPERSEDES, EXPLAINS) with Cypher queries
  • Three-layer auto-dedup — exact hash + semantic similarity + LLM-driven consolidation
  • Workspace namespacing — memories scoped per project; global_search opt-out
  • HNSW vector search — fast cosine similarity over FastEmbed embeddings
  • Topic auto-linking — tags become graph nodes, enabling traversal queries
  • Embedded — no Docker, no server process, single database directory
  • Zero config — sensible defaults, just install and run
  • Importance & access tracking — memories ranked by relevance and usage

Benchmarks

Memnest scores 82.9% on the LOCOMO benchmark — the standard evaluation for long-term conversational memory (ACL 2024).

Category Score
Single-hop 84.4%
Multi-hop 76.9%
Open-domain 85.7%
Temporal 86.5%
Adversarial 76.6%
Overall 82.9%

Evaluated with Claude Sonnet 4.5 as the answer agent and Haiku 4.5 as the judge, using the industry-standard LLM-as-a-Judge methodology. All 5 LOCOMO categories included.

Architecture advantages

  • Zero LLM calls in the server — intelligence lives in the agent, not the memory layer
  • Local embeddings — no API key needed (bge-small-en-v1.5, 384-dim)
  • Single embedded database — no Docker, no PostgreSQL, no separate vector DB
  • Hybrid search — Vector (HNSW) + Full-text (BM25) + Graph (PageRank + Louvain communities)
  • Minimal retrieval surface — the benchmark agent above scored 82.9% using only memory_search, memory_get and a calculator for date arithmetic. Retrieval quality comes from the server, not from agent-side orchestration.

Quick Start

# Run directly with uvx (no install needed)
uvx memnest-mcp

Or install and run:

pip install memnest-mcp
memnest-mcp

Configure a project (Kiro)

From your project root, one command writes the workspace-level MCP config (with the memory scope pinned to the project) plus the recall/persist/dream agent hooks:

memnest-mcp config kiro            # configure the current directory
memnest-mcp config kiro --check    # verify only
memnest-mcp config kiro --no-hooks # MCP server config only

This writes .kiro/settings/mcp.json (server + pinned workspace), .kiro/hooks/memnest-recall.json and memnest-persist.json (automatic recall and persistence), and .kiro/steering/memnest-dream.md — a manual steering file you invoke with /memnest-dream to consolidate memory.

The config is always workspace-level (<project>/.kiro/), so each project gets its own correctly-scoped memory database at <project>/.memnest/. Reconnect MCP servers in Kiro afterwards. The Kiro Power (below) remains optional on top for keyword activation and skills.

MCP Configuration

Add to your MCP client config (Kiro, Claude Desktop, Cursor, etc.):

{
  "mcpServers": {
    "memnest": {
      "command": "uvx",
      "args": ["memnest-mcp@latest"],
      "env": {
        "FASTMCP_LOG_LEVEL": "ERROR"
      }
    }
  }
}

That's it — zero config required. All settings have sensible defaults.

Tools

Tool What it does
memory_store Store a memory (single or batch) with auto-dedup, auto-link to Topic nodes
memory_search Hybrid semantic + keyword search, ranked by relevance
memory_update Update content, importance, or tags (single or batch)
memory_delete Delete one or more memories and their relationships
memory_get Read one memory in full — untruncated content plus its edges
memory_list Enumerate memories by recency / category / topic / importance (no ranking, pages to any depth)
memory_relate Create RELATED_TO / SUPERSEDES / EXPLAINS relationships (single or batch, idempotent)
memory_unrelate Remove a relationship — one type or all types between a pair
memory_query Run any Cypher query — traversals, writes, extension calls (INSTALL/LOAD), table scans
memory_schema Inspect live DB schema: tables, columns, indexes, extensions
memory_topics List all topics (tags) with memory counts
memory_stats Database statistics: counts, categories, topics, top memories, runtime health
memory_dream Periodic consolidation — auto-prune stale, auto-merge trivial duplicates, surface clusters for review
memory_reindex Rebuild both search indexes (vector HNSW and full-text BM25)
memory_export Write all memories and edges to a portable JSON file
memory_import Restore an export — ids remapped, edges rewired, dedup applied
memory_set_workspace Pin the workspace scope and database location
memory_graph_html Generate an interactive HTML visualization of the graph
memory_traverse Deprecated — use memory_query(read_only=True)

Graph Data Model

(:Memory)  — content, embedding, category, tags, importance, access_count, timestamps
(:Topic)   — auto-created from tags

(:Memory)-[:ABOUT]->(:Topic)          # memory is about a topic
(:Memory)-[:RELATED_TO]->(:Memory)    # memories are related
(:Memory)-[:SUPERSEDES]->(:Memory)    # newer memory replaces older

Example: Store and Search

# Store a memory (via MCP tool call)
memory_store(
    content="User prefers Python over Node.js for backend tools",
    category="preference",
    tags=["python", "nodejs", "backend"],
    importance=4
)

# Search memories
memory_search(query="what language does the user prefer")

# Traverse the graph
memory_query(
    cypher_query="MATCH (m:Memory)-[:ABOUT]->(t:Topic {name: 'python'}) RETURN m.content"
)

Example: Graph Relationships

# Link related memories
memory_relate(from_id=5, to_id=3, relationship="RELATED_TO")

# Mark a decision as superseded
memory_relate(from_id=8, to_id=2, relationship="SUPERSEDES")

# Find all memories about a topic
memory_query(
    cypher_query="MATCH (m:Memory)-[:ABOUT]->(t:Topic) RETURN t.name, COUNT(m) ORDER BY COUNT(m) DESC"
)

Three-Layer Deduplication

Every memory_store call runs through three dedup layers:

  1. Exact hash — SHA256 of normalized content. Identical content is rejected, importance bumped.
  2. Semantic similarity — If cosine similarity > 0.92 with an existing memory, merges into it (keeps longer content, merges tags, bumps importance).
  3. Consolidation — Periodic via memory_dream. Auto-prunes stale low-importance memories, auto-merges trivial duplicates (similarity ≥ 0.95), surfaces clusters for LLM-driven review.

Categories

Category Use for
learning Technical knowledge, facts, how things work
preference User preferences and choices
decision Architecture decisions, tool choices
pattern Recurring workflows, conventions
general Everything else (default)

Configuration

All settings are optional — defaults work out of the box.

Environment Variable Default Description
MEMORY_DB_PATH .memnest/memory.lbug (in cwd) LadybugDB database path. Use :memory: for ephemeral testing
MEMORY_DEDUP_THRESHOLD 0.92 Semantic similarity threshold for auto-dedup
MEMORY_MERGE_TAG_OVERLAP 0.5 Minimum tag Jaccard overlap before two similar memories may merge
MEMORY_MERGE_VALUE_GATE 1 Refuse to merge near-identical memories whose values disagree (500ms vs 900ms). Set 0 to restore pure-similarity merging (unsafe)
MEMORY_CONFLICT_THRESHOLD 0.85 Similarity at which two results are flagged near_duplicate
MEMORY_CONFLICT_VALUE_FLOOR 0.5 Similarity floor for value_disagreement flagging — same subject, different value, however differently worded
MEMORY_EMBEDDING_MODEL BAAI/bge-small-en-v1.5 FastEmbed model for embeddings
MEMORY_EMBEDDING_DIM 384 Embedding dimension (must match model)
MEMORY_WORKSPACE cwd Workspace identifier for memory namespacing
MEMORY_RESPONSE_FORMAT toon if installed, else json Response serialization. toon is more token-efficient for LLM context
MEMORY_SEARCH_LIMIT 10 Max results from memory_search
MEMORY_LIST_LIMIT 20 Default page size for memory_list
MEMORY_MAX_CONTENT 500 Content truncation length in search/list results
MEMORY_LATENCY_WARN_MS 200 Log a warning when an op exceeds this (ms)
MEMORY_DREAM_MIN_OPS 10 Min ops since last dream before next runs
MEMORY_DREAM_MIN_HOURS 24 Min hours since last dream before next runs
MEMORY_DREAM_MIN_MEMORIES 20 Min total memories before dream is allowed (skipped otherwise)
MEMORY_DREAM_PRUNE_DAYS 30 Auto-prune memories older than N days (with low importance)
MEMORY_DREAM_PRUNE_MAX_IMP 2 Auto-prune only memories at or below this importance
MEMORY_DREAM_TRIVIAL_THRESHOLD 0.95 Cosine similarity ≥ this is auto-merged in dream
MEMORY_DREAM_CLUSTER_LOW 0.88 Cluster-review window: [low, trivial) is surfaced for agent review
MEMORY_CONSOLIDATE_CLUSTERS 10 Max clusters returned per memory_dream run
MEMORY_CONSOLIDATE_SCAN 1000 Max memories scanned per dream phase
MEMORY_ALLOW_DESTRUCTIVE false Allow DELETE/DROP/TRUNCATE/REMOVE/SET/COPY through memory_query. Off by default for safety. Prefer memory_update, memory_delete, memory_unrelate
MEMORY_SEARCH_CANDIDATES 100 Rows each search channel retrieves before fusion. Independent of top_k
MEMORY_MAX_STORE_CHARS 20000 Content longer than this is truncated on store
MEMORY_MAX_BATCH 500 Max items per batch call
MEMORY_GRAPH_MAX_NODES 2000 Max nodes memory_graph_html will render before refusing
MEMORY_EMBED_TIMEOUT_S 30 Soft timeout for embedding model load (warm-up only)

In-Memory Mode (Testing)

"env": { "MEMORY_DB_PATH": ":memory:" }

All data is ephemeral — lost on restart. Useful for testing.

Kiro Power

This repo includes a ready-to-use Kiro Power in the power/memnest/ directory, packaged in the Agent Plugins v1.0.0 format with:

  • Plugin manifest with activation keywords (power/memnest/plugin.json)
  • Pre-configured MCP server (power/memnest/mcp.json)
  • Two Kiro agent hooks for automatic recall and persistence (power/memnest/dev.kiro/hooks/, v1 hook schema — IDE/CLI only; on Kiro Web the agent follows the same workflow from the getting-started skill)
    • memnest-recall (UserPromptSubmit) — searches memory before responding to each prompt
    • memnest-persist (Stop) — stores important info when the agent finishes
    • consolidation runs on demand via memory_dream (see the getting-started skill)
  • Agent Skills with the setup guide and Cypher query examples (power/memnest/skills/)

Install in Kiro: Add Custom Power → https://github.com/arunkumars-mf/memnest-mcp/tree/main/power/memnest

Architecture

AI Agent (Kiro, Claude, etc.)
    │
    ├─ memory_store ──→ embed content → dedup check → insert node → link topics
    ├─ memory_search ─→ embed query → HNSW vector search → tag boost → rank
    ├─ memory_query ──→ execute Cypher → return graph results
    │
    └─ LadybugDB (embedded, single directory)
        ├─ Memory nodes (content + FLOAT[384] embeddings)
        ├─ Topic nodes (auto-linked from tags)
        ├─ HNSW vector index (cosine similarity)
        └─ Graph relationships (ABOUT, RELATED_TO, SUPERSEDES, EXPLAINS)

Requirements

  • Python 3.10+
  • Dependencies installed automatically: real-ladybug, fastembed, mcp
  • ~130MB disk for the embedding model (downloaded on first run)

TOON Format (Optional)

Memnest supports TOON (Token-Oriented Object Notation) as a response format, reducing token usage by 30–60% compared to JSON. This is useful when memory results are fed back into LLM context.

TOON is optional — the server falls back to compact JSON automatically if the package isn't installed. To enable it:

pip install "memnest-mcp[toon]"

Or with uvx (requires the --prerelease=allow flag since toon-format is currently in beta):

uvx --prerelease=allow --with "toon-format==0.9.0b1" memnest-mcp@latest

To switch formats at runtime, set the environment variable:

MEMORY_RESPONSE_FORMAT=toon   # compact, token-efficient (default when installed)
MEMORY_RESPONSE_FORMAT=json   # standard JSON (default when toon is not installed)

The official Python implementation of TOON is toon-format/toon-python, currently at v0.9.0-beta.1. Once it reaches a stable 1.0 release, the --prerelease=allow flag will no longer be necessary.

Contributing

Issues and PRs welcome. See LICENSE for terms.

License

MIT

Changelog

0.19.0

Surface hardening from a full tool-by-tool review.

  • Security: the memory_query destructive-query guard was bypassable. It matched the substring "DELETE " — with a literal trailing space — so MATCH (m:Memory)\nDETACH\nDELETE\nm; reported success and deleted every memory with MEMORY_ALLOW_DESTRUCTIVE=false. Queries are now classified after stripping comments and string literals, matching keywords on word boundaries.
  • Breaking: read_only=True now rejects any mutation. It previously permitted CREATE/MERGE/SET, so an overwrite succeeded under a flag named read-only. MEMORY_ALLOW_DESTRUCTIVE now also covers SET, REMOVE and COPY — an overwrite destroys the previous value as surely as a delete.
  • New memory_unrelate: edges could be created but never removed, and memory_query's DELETE is blocked by default, so a mistaken SUPERSEDES was permanent. This is also the supported way to break a circular SUPERSEDES chain that memory_dream reports.
  • memory_get now returns edges (include_edges=True by default) plus superseded / superseded_by. Answering "what does this replace?" no longer requires Cypher.
  • Ranking fix: the search candidate pool was top_k * 3, so the page size decided which memories were scored at all — on a 25-memory corpus, top_k=10 surfaced two memories that outranked every result top_k=5 returned. The pool is now fixed (MEMORY_SEARCH_CANDIDATES, default 100) and independent of top_k. Scores are unchanged; only coverage improves.
  • Pagination: memory_search(offset=...) with offset / has_more in the response. Rank 11+ was previously unreachable.
  • New memory_export / memory_import: JSON backup and restore including edges, with id remapping so an import can merge into an existing database. memory_relate is now idempotent (status: "exists"), so re-importing no longer doubles every edge.
  • Input validation across every tool: two-sided clamping (preview_chars=-5 used to slice content from the wrong end; top_k=0 returned a degraded flag blaming the embedding model), content and batch size caps, and honest statuses (memory_delete reported deleted when every id was missing; memory_list(min_importance='high') raised a raw ValueError).
  • memory_get and memory_list are no longer labelled compatibility aliases — each does something no other tool does. memory_traverse is marked deprecated.

0.3.0

  • Default database is now per-workspace: .memnest/memory.lbug in the current directory. No more cross-workspace lock conflicts.
  • Set MEMORY_DB_PATH to use a custom location (e.g. ~/.memnest/memory.lbug for global shared memory).
  • Hybrid search: Vector (HNSW) + Full-text (BM25) + Graph scoring with PageRank, Louvain community detection, and K-Core decomposition.
  • LOCOMO benchmark: 82.9% overall score.

0.2.0

Compatibility-preserving redesign with improved safety defaults.

  • New tools: memory_query (general Cypher), memory_schema, memory_topics, memory_dream, memory_graph_html. Batch mode added to memory_store, memory_update, memory_relate, memory_delete.
  • Breaking: MEMORY_ALLOW_DESTRUCTIVE now defaults to false. Set it to true if you previously relied on memory_query deleting nodes.
  • Breaking: tag storage migrated from comma-joined strings to JSON arrays. Old rows are still readable; rewriting (e.g. via memory_update) upgrades them to JSON.
  • memory_get, memory_list, memory_traverse from 0.1.x are retained as compatibility aliases. (As of 0.19.0 memory_get and memory_list are first-class again; only memory_traverse remains deprecated.)
  • TOON serialization is now the default response format when toon-format is installed; set MEMORY_RESPONSE_FORMAT=json to opt out.
  • memory_relate validates that both endpoints exist before returning created (used to silently no-op on typo'd IDs).
  • memory_graph_html is now XSS-safe (HTML-escaped tooltips, DOM textContent for the detail panel), refuses to render >MEMORY_GRAPH_MAX_NODES, and rotates snapshots.
  • Workspace filter pushed inside the vector index WITH clause so search recall isn't starved across workspaces.
  • Dream consolidation: dedupes parallel edges across merges, isolates clusters by workspace, persists state via atomic sidecar JSON.

Release files for memnest-mcp 0.21.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for memnest-mcp 0.21.1
File Size Uploaded
memnest_mcp-0.21.1.tar.gz 791.8 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for memnest-mcp 0.21.1
File Interpreter ABI Platform
memnest_mcp-0.21.1-py3-none-any.whl Python 3 none any Details

Total release size: 883.5 kB

Release files / memnest_mcp-0.21.1.tar.gz

Download URL memnest_mcp-0.21.1.tar.gz
Size 791.8 kB
Tags Source
SHA-256 checksum
How to use checksums
203bef74f66a7224313c3bac134b64784a33e24f572f4ed195d78fb58ec979be
BLAKE2b-256 checksum
How to use checksums
2289eab20dfd21460199044ec59e3477452c36156068d6b9de113cb5f35244e6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.4

Release files / memnest_mcp-0.21.1-py3-none-any.whl

Download URL memnest_mcp-0.21.1-py3-none-any.whl
Size 91.8 kB
Tags Python 3
SHA-256 checksum
How to use checksums
a24f4e1c5b06aa31442f2f7fffadff71182ae5a65b4966e87948df2993fe14d7
BLAKE2b-256 checksum
How to use checksums
880743d9d7d353e1b68f9b2a58bcd65d2b89c7222732d177fcddca766563a0b2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.4

Release history Release notifications | RSS feed

0.32.0

2 release files

0.31.3

2 release files

0.31.2

2 release files

0.31.1

2 release files

0.31.0

2 release files

0.30.2

2 release files

0.30.1

2 release files

0.30.0

2 release files

0.29.3

2 release files

This release

0.21.1 This release

2 release files

0.9.1

2 release files

0.9.0

2 release files

0.8.0

2 release files

0.7.2

2 release files

0.7.1

2 release files

0.7.0

2 release files

0.6.1

2 release files

0.6.0

2 release files

0.5.1

2 release files

0.5.0

2 release files

0.4.0

2 release files

0.3.5

2 release files

0.3.4

2 release files

0.3.3

2 release files

0.3.2

2 release files

0.3.1

2 release files

0.3.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page