@jcyamacho/agent-memory 0.0.5 → 0.0.7
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 +18 -3
- package/dist/index.js +3616 -45
- 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`
|
|
@@ -102,8 +119,6 @@ Inputs:
|
|
|
102
119
|
Output:
|
|
103
120
|
|
|
104
121
|
- `id`
|
|
105
|
-
- `workspace`
|
|
106
|
-
- `created_at`
|
|
107
122
|
|
|
108
123
|
### `recall`
|
|
109
124
|
|
|
@@ -120,7 +135,7 @@ Inputs:
|
|
|
120
135
|
|
|
121
136
|
Output:
|
|
122
137
|
|
|
123
|
-
- `results[]` with `id`, `content`, `score`, `workspace`, and `
|
|
138
|
+
- `results[]` with `id`, `content`, `score`, `workspace`, and `updated_at`
|
|
124
139
|
|
|
125
140
|
## Setup
|
|
126
141
|
|