@jcyamacho/agent-memory 0.0.6 → 0.0.8
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 +17 -0
- package/dist/index.js +3588 -26
- package/package.json +3 -1
package/README.md
CHANGED
|
@@ -88,6 +88,23 @@ This MCP is useful for context that should survive across turns and sessions:
|
|
|
88
88
|
- Important decisions and constraints that should not be rediscovered
|
|
89
89
|
- Project-scoped notes that still matter later
|
|
90
90
|
|
|
91
|
+
## Web UI
|
|
92
|
+
|
|
93
|
+
Browse, edit, and delete memories in a local web interface:
|
|
94
|
+
|
|
95
|
+
```bash
|
|
96
|
+
npx -y @jcyamacho/agent-memory --ui
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
Opens at `http://localhost:6580`. Use `--port` to change:
|
|
100
|
+
|
|
101
|
+
```bash
|
|
102
|
+
npx -y @jcyamacho/agent-memory --ui --port 9090
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
The web UI uses the same database as the MCP server. LLM tools remain
|
|
106
|
+
append-only; the web UI is the only way to edit or delete memories.
|
|
107
|
+
|
|
91
108
|
## Tools
|
|
92
109
|
|
|
93
110
|
### `remember`
|