@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 +5 -16
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
[](https://nodejs.org)
|
|
8
8
|
[](https://modelcontextprotocol.io)
|
|
9
9
|
|
|
10
|
-
**
|
|
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
|
|
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
|
-
##
|
|
353
|
+
## Why files, not a database
|
|
354
354
|
|
|
355
|
-
|
|
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
|
-
|
|
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.
|
|
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.
|
|
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.
|
|
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",
|