@xultrax-web/agent-memory-mcp 0.10.1 → 0.10.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -7,9 +7,9 @@
7
7
  [![Node](https://img.shields.io/badge/node-%3E%3D20-brightgreen.svg)](https://nodejs.org)
8
8
  [![MCP](https://img.shields.io/badge/MCP-server-blueviolet)](https://modelcontextprotocol.io)
9
9
 
10
- **The only MCP memory server that isn't a database.** Every other option asks you to trust a knowledge graph, a vector DB, Postgres + pgvector, DuckDB, or Neo4j. This one writes plain markdown files to a directory.
10
+ **Markdown memory for AI agents.** Plain files in a directory you control read them, edit them, grep them, commit them. Operator-grade storage primitives (atomic writes, file locking, soft-delete to `.trash/`, schema versioning, doctor command) wrap the files so nothing rots in the long tail.
11
11
 
12
- You can `cat` your memory. You can `grep` it. You can edit it in vim. You can commit it to git. You can move it between machines with `scp`. If the AI gets it wrong, you fix it in a text editor and save. No migration scripts. No vendor lock-in. No "just trust the embedding."
12
+ You can `cat` your memory. You can `grep` it. You can edit it in vim. You can commit it to git. You can move it between machines with `scp` or with the built-in `agent-memory sync` (git-backed). If the AI gets a memory wrong, you fix it in a text editor and save. No migration scripts. No vendor lock-in.
13
13
 
14
14
  ---
15
15
 
@@ -350,22 +350,11 @@ The importer walks `~/.claude/projects/*/memory/`, parses each memory's YAML fro
350
350
 
351
351
  ---
352
352
 
353
- ## How it compares
353
+ ## Why files, not a database
354
354
 
355
- The memory MCP landscape, as of May 2026:
355
+ You give up native semantic similarity search and structured entity-relation queries. You get a memory store that survives every tool change, every machine swap, every "wait, what was that AI telling me about this codebase six months ago?" — and that you can still read after a power outage.
356
356
 
357
- | Server | Backend | Hand-editable? | Greppable? | Git-friendly? |
358
- | ------------------------------------------------ | ---------------------- | -------------- | ---------- | -------------- |
359
- | **agent-memory-mcp (this)** | **Markdown files** | **Yes** | **Yes** | **Yes** |
360
- | `@modelcontextprotocol/server-memory` (official) | Knowledge graph (JSON) | No (raw JSON) | Limited | Painful merges |
361
- | memory-graph/memory-graph | Graph DB | No | No | No |
362
- | IzumiSy/mcp-duckdb-memory-server | DuckDB | No | No | No |
363
- | sdimitrov/mcp-memory | Postgres + pgvector | No | No | No |
364
- | JovanHsu/mcp-neo4j-memory-server | Neo4j | No | No | No |
365
-
366
- **The trade you're making:** you give up native semantic similarity search and structured entity-relation queries. You get a memory store that survives every tool change, every machine swap, every "wait, what was that AI telling me about this codebase six months ago?"
367
-
368
- For most workflows that's a good trade. For some it isn't. Pick the right tool.
357
+ The trade is real. For workflows that need vector recall or graph queries, a database-backed memory is the right tool. For workflows where memory is something you want to grep, edit, version-control, and audit by hand, this is.
369
358
 
370
359
  ---
371
360
 
package/dist/index.js CHANGED
@@ -1236,7 +1236,7 @@ function actionColor(action) {
1236
1236
  // -------------------------------------------------------------
1237
1237
  // Server wiring
1238
1238
  // -------------------------------------------------------------
1239
- const server = new Server({ name: "agent-memory", version: "0.10.1" }, { capabilities: { tools: {}, resources: {}, prompts: {} } });
1239
+ const server = new Server({ name: "agent-memory", version: "0.10.3" }, { capabilities: { tools: {}, resources: {}, prompts: {} } });
1240
1240
  // -------------------------------------------------------------
1241
1241
  // Resource URI scheme
1242
1242
  // -------------------------------------------------------------
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@xultrax-web/agent-memory-mcp",
3
- "version": "0.10.1",
3
+ "version": "0.10.3",
4
4
  "mcpName": "io.github.xultrax-web/agent-memory-mcp",
5
- "description": "Markdown memory for AI agents. Plain files you can read, edit, grep, and commit. The only MCP memory server that isn't a database.",
5
+ "description": "Markdown memory for AI agents. Plain files you can read, edit, grep, and commit. Operator-grade storage with atomic writes, file locking, tags, [[wiki-links]], find_related, git-backed multi-machine sync, and an Ink-based TUI.",
6
6
  "type": "module",
7
7
  "bin": {
8
8
  "agent-memory-mcp": "dist/index.js",