lemma-mcp 0.10.2 → 0.11.0
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 -1
- package/assets/visualizer.html +990 -0
- package/dist/index.js +11 -1
- package/dist/index.js.map +1 -1
- package/dist/server/agents-md.d.ts.map +1 -1
- package/dist/server/agents-md.js +1 -0
- package/dist/server/agents-md.js.map +1 -1
- package/dist/server/visualize.d.ts +2 -0
- package/dist/server/visualize.d.ts.map +1 -0
- package/dist/server/visualize.js +208 -0
- package/dist/server/visualize.js.map +1 -0
- package/dist/server/visualizer.html +990 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -36,9 +36,13 @@ Add Lemma to your MCP client configuration:
|
|
|
36
36
|
|
|
37
37
|
```bash
|
|
38
38
|
lemma -lib # Library Mode: snapshot of your entire knowledge base
|
|
39
|
+
lemma -vis # Visualizer: interactive memory graph in browser
|
|
40
|
+
lemma -vis -p 8080 # Visualizer on custom port (default: 3456)
|
|
39
41
|
```
|
|
40
42
|
|
|
41
|
-
|
|
43
|
+
**Library Mode** (`-lib`) outputs a full analysis of all memories, guides, relations, stale fragments, distill candidates, and suggested actions. Useful for periodic maintenance and review.
|
|
44
|
+
|
|
45
|
+
**Visualizer** (`-vis`) starts a local HTTP server and opens an interactive D3.js force-directed graph of your memory fragments in the browser. Nodes represent memories (sized by confidence + access count, colored by type). Links show relations and associations. All changes (edit, delete, link, unlink) write directly to the SQLite database in real-time. Cross-platform: works on macOS, Linux, and Windows.
|
|
42
46
|
|
|
43
47
|
## How It Works
|
|
44
48
|
|