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 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.6";
12
+ const VERSION = "0.2.7";
13
13
  const program = new Command();
14
14
  program
15
15
  .name("memshare")
@@ -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.6" }, {
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 " +
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "memshare-mcp",
3
- "version": "0.2.6",
3
+ "version": "0.2.7",
4
4
  "description": "Peer-to-peer AI memory sharing between users — with consent. Local-first JSON memory store with an MCP server and CLI.",
5
5
  "keywords": [
6
6
  "mcp",