@nuzo/mcp-server 0.1.2 → 0.1.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 +39 -8
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -3,20 +3,51 @@
|
|
|
3
3
|
The MCP stdio server for Nuzo, a local-first and auditable memory layer for AI
|
|
4
4
|
agents.
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
Use this package when an MCP-compatible host needs access to Nuzo memory tools.
|
|
7
|
+
Human users usually install `@nuzo/memory-cli` instead.
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
diagnostics.
|
|
9
|
+
## Run
|
|
11
10
|
|
|
12
|
-
|
|
11
|
+
Use a fixed version in host plugins and automated configuration:
|
|
13
12
|
|
|
14
13
|
```bash
|
|
15
|
-
npm exec --yes --package=@nuzo/mcp-server
|
|
14
|
+
npm exec --yes --package=@nuzo/mcp-server@0.1.3 -- nuzo-mcp-server
|
|
16
15
|
```
|
|
17
16
|
|
|
18
|
-
|
|
19
|
-
|
|
17
|
+
Avoid `latest` in plugin manifests and reproducible host configs. Host
|
|
18
|
+
artifacts should pin the same version as the Nuzo release they ship with.
|
|
19
|
+
|
|
20
|
+
## Tools
|
|
21
|
+
|
|
22
|
+
The server exposes the Nuzo memory contract over MCP:
|
|
23
|
+
|
|
24
|
+
```text
|
|
25
|
+
memory.remember
|
|
26
|
+
memory.recall
|
|
27
|
+
memory.recall_hook
|
|
28
|
+
memory.suggest_capture
|
|
29
|
+
memory.list
|
|
30
|
+
memory.update
|
|
31
|
+
memory.history
|
|
32
|
+
memory.forget
|
|
33
|
+
memory.forget_many
|
|
34
|
+
memory.export
|
|
35
|
+
memory.import
|
|
36
|
+
memory.doctor
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
`memory.suggest_capture` is read-only. Use it to validate inferred memory
|
|
40
|
+
drafts before asking the user to confirm a write through `memory.remember`.
|
|
41
|
+
|
|
42
|
+
## Defaults
|
|
43
|
+
|
|
44
|
+
Runtime memory is stored locally under:
|
|
45
|
+
|
|
46
|
+
```text
|
|
47
|
+
~/.nuzo/memory/
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
Nuzo does not enable telemetry, sync, embeddings, or network calls by default.
|
|
20
51
|
|
|
21
52
|
Documentation: https://nuzo.com.br/
|
|
22
53
|
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nuzo/mcp-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "MCP server for Nuzo.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai-agents",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"LICENSE"
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@nuzo/memory-core": "0.1.
|
|
36
|
+
"@nuzo/memory-core": "0.1.3",
|
|
37
37
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
38
38
|
"zod": "^4.1.13"
|
|
39
39
|
},
|