memshare-mcp 0.2.6 → 0.2.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 +12 -0
- package/dist/cli/index.js +1 -1
- package/dist/mcp/server.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -66,6 +66,18 @@ memshare list
|
|
|
66
66
|
memshare list --tags project-x
|
|
67
67
|
```
|
|
68
68
|
|
|
69
|
+
## Try it in a sandbox first
|
|
70
|
+
|
|
71
|
+
The whole flow — capture, the consent step, PII getting blocked, export, per-item import — against throwaway stores:
|
|
72
|
+
|
|
73
|
+
```bash
|
|
74
|
+
git clone https://github.com/kampana/memshare.git
|
|
75
|
+
cd memshare && npm install && npm run build
|
|
76
|
+
bash examples/try-it.sh
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
This does install the project's dependencies locally, in the folder you cloned. What it does **not** do: install anything globally, create or modify `~/.memshare`, or add anything to your Claude config. It builds two fake stores under a temp directory and deletes cleanly. Nothing carries over to a real setup.
|
|
80
|
+
|
|
69
81
|
## Sharing with someone else
|
|
70
82
|
|
|
71
83
|
```bash
|
package/dist/cli/index.js
CHANGED
|
@@ -9,7 +9,7 @@ import { readBundleFile, writeBundleFile } from "../sharing/bundle.js";
|
|
|
9
9
|
import { buildExportBundle, describeSkipReason, selectForExport, } from "../sharing/export.js";
|
|
10
10
|
import { applyImport, planImport, senderTag } from "../sharing/import.js";
|
|
11
11
|
import { c, fail, formatItemLine, formatPii, heading, info, isInteractive, ok, relativeTime, shortId, table, truncate, warn, } from "./ui.js";
|
|
12
|
-
const VERSION = "0.2.
|
|
12
|
+
const VERSION = "0.2.7";
|
|
13
13
|
const program = new Command();
|
|
14
14
|
program
|
|
15
15
|
.name("memshare")
|
package/dist/mcp/server.js
CHANGED
|
@@ -36,7 +36,7 @@ export async function createServer(store = new MemoryStore()) {
|
|
|
36
36
|
const name = server.server.getClientVersion()?.name?.trim().toLowerCase();
|
|
37
37
|
return name && name !== "" ? name : "mcp";
|
|
38
38
|
};
|
|
39
|
-
const server = new McpServer({ name: "memshare", version: "0.2.
|
|
39
|
+
const server = new McpServer({ name: "memshare", version: "0.2.7" }, {
|
|
40
40
|
instructions: "memshare is this user's own memory store, shared across every AI tool they use. " +
|
|
41
41
|
"Treat it as your long-term memory of them.\n\n" +
|
|
42
42
|
"At the start of a conversation, call memory_get to recall what you already know about " +
|