@prom.codes/memory-mcp 0.2.0 → 0.2.1
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 +1 -1
- package/dist/bin.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @prom.codes/memory-mcp
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
prom.codes Memory — persistent, local-first agent memory as an MCP server (stdio).
|
|
4
4
|
|
|
5
5
|
Gives coding agents a durable memory across sessions: facts, decisions and
|
|
6
6
|
procedures survive context-window resets. Records live in a local SQLite
|
package/dist/bin.js
CHANGED
|
@@ -1719,7 +1719,7 @@ ${p.value}`)
|
|
|
1719
1719
|
var SERVER_IDENTITY = {
|
|
1720
1720
|
name: "prometheus-memory-mcp",
|
|
1721
1721
|
version: PROMETHEUS_VERSION,
|
|
1722
|
-
title: "
|
|
1722
|
+
title: "prom.codes Memory"
|
|
1723
1723
|
};
|
|
1724
1724
|
var SERVER_INSTRUCTIONS = "Persistent agent memory for this workspace. At the START of a session or task, call memory_read to recall facts, decisions and procedures from earlier sessions. When the user states a durable preference, decision or correction, store it with memory_write. Use memory_search for keyword recall when memory_read is not specific enough. At the END of a session, consolidate what was learned with memory_capture. Run memory_setup once per workspace to install the memory protocol into runtime rule files. Never store secrets, API keys or credentials \u2014 such writes are rejected.";
|
|
1725
1725
|
function createServer(deps, options = {}) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prom.codes/memory-mcp",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.2.1",
|
|
4
|
+
"description": "prom.codes Memory — persistent, local-first agent memory as an MCP server.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"prometheus-memory-mcp": "dist/bin.js"
|