memshare-mcp 0.4.0 → 0.4.1

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
@@ -1,6 +1,6 @@
1
1
  # memshare
2
2
 
3
- **Peer-to-peer AI memory sharing between users — with consent.**
3
+ **Peer-to-peer AI memory sharing between users — approved on both sides.**
4
4
 
5
5
  [![npm](https://img.shields.io/npm/v/memshare-mcp.svg)](https://www.npmjs.com/package/memshare-mcp)
6
6
  [![CI](https://github.com/kampana/memshare/actions/workflows/ci.yml/badge.svg)](https://github.com/kampana/memshare/actions/workflows/ci.yml)
@@ -14,7 +14,7 @@ That third one is the part nothing else does. A designer working in Cursor and b
14
14
 
15
15
  No central server. No cloud. No signup.
16
16
 
17
- 🌐 **[memshare.dev site](https://kampana.github.io/memshare/)** · 📊 **[Pitch deck](https://kampana.github.io/memshare/pitch.html)** · 📄 **[Full spec](docs/SPEC.md)**
17
+ 🌐 **[Site](https://kampana.github.io/memshare/)** · 📊 **[Pitch deck](https://kampana.github.io/memshare/pitch.html)**
18
18
 
19
19
  ---
20
20
 
package/dist/cli/index.js CHANGED
@@ -11,7 +11,7 @@ import { readBundleFile, writeBundleFile } from "../sharing/bundle.js";
11
11
  import { buildExportBundle, describeSkipReason, selectForExport, } from "../sharing/export.js";
12
12
  import { applyImport, planImport, senderTag } from "../sharing/import.js";
13
13
  import { c, fail, formatItemLine, formatPii, heading, info, isInteractive, ok, relativeTime, shortId, table, truncate, warn, } from "./ui.js";
14
- const VERSION = "0.4.0";
14
+ const VERSION = "0.4.1";
15
15
  const program = new Command();
16
16
  program
17
17
  .name("memshare")
@@ -41,7 +41,7 @@ export async function createServer(store = new MemoryStore()) {
41
41
  const name = server.server.getClientVersion()?.name?.trim().toLowerCase();
42
42
  return name && name !== "" ? name : "mcp";
43
43
  };
44
- const server = new McpServer({ name: "memshare", version: "0.4.0" }, {
44
+ const server = new McpServer({ name: "memshare", version: "0.4.1" }, {
45
45
  instructions: "memshare is this user's own memory store, shared across every AI tool they use. " +
46
46
  "Treat it as your long-term memory of them.\n\n" +
47
47
  "At the start of a conversation, call memory_get to recall what you already know about " +
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "memshare-mcp",
3
- "version": "0.4.0",
4
- "description": "Peer-to-peer AI memory sharing between users — with consent. Local-first JSON memory store with an MCP server and CLI.",
3
+ "version": "0.4.1",
4
+ "description": "Peer-to-peer AI memory sharing between users — approved on both sides. Local-first JSON memory store with an MCP server and CLI.",
5
5
  "keywords": [
6
6
  "mcp",
7
7
  "model-context-protocol",