@plur-ai/mcp 0.5.0 → 0.5.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/dist/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
 
3
3
  // src/index.ts
4
- var VERSION = "0.5.0";
4
+ var VERSION = "0.5.1";
5
5
  var HELP = `plur-mcp v${VERSION} \u2014 persistent memory for AI agents
6
6
 
7
7
  Usage:
@@ -75,7 +75,7 @@ if (arg === "init") {
75
75
  process.exit(0);
76
76
  }
77
77
  if (arg === "serve" || arg === void 0) {
78
- const { runStdio } = await import("./server-3QMSEZUP.js");
78
+ const { runStdio } = await import("./server-2XPELZWN.js");
79
79
  runStdio().catch((err) => {
80
80
  console.error("Failed to start PLUR MCP server:", err);
81
81
  process.exit(1);
@@ -856,7 +856,7 @@ function getToolDefinitions() {
856
856
 
857
857
  // src/server.ts
858
858
  import { z } from "zod";
859
- var VERSION = "0.5.0";
859
+ var VERSION = "0.5.1";
860
860
  var INSTRUCTIONS = `PLUR is your persistent memory. It stores corrections, preferences, and conventions as engrams that persist across sessions.
861
861
 
862
862
  Use PLUR proactively:
@@ -865,6 +865,8 @@ Use PLUR proactively:
865
865
  - Call plur_feedback after using recalled engrams to train relevance
866
866
  - Call plur_session_end before the conversation ends \u2014 captures learnings and session summary
867
867
 
868
+ For combined search (engrams + files): call plur_recall_hybrid for memories, then datacore.search for journal/knowledge files.
869
+
868
870
  Do not ask permission to use these tools \u2014 they are your memory system.`;
869
871
  var GUIDE_RESOURCE = `# PLUR \u2014 Agent Guide
870
872
 
@@ -924,6 +926,8 @@ Persistent memory for AI agents. Corrections, preferences, and conventions are s
924
926
  - **plur_stores_add** \u2014 register an additional engram store
925
927
  - **plur_stores_list** \u2014 list all configured stores
926
928
 
929
+ **Note:** Multi-store is currently config-only. Recall and inject search the primary store. Cross-store search coming in a future release.
930
+
927
931
  ### Sync & Status
928
932
  - **plur_sync** \u2014 sync engrams across devices via git
929
933
  - **plur_sync_status** \u2014 check sync state
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plur-ai/mcp",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "plur-mcp": "dist/index.js"
@@ -12,7 +12,7 @@
12
12
  "dependencies": {
13
13
  "@modelcontextprotocol/sdk": "^1.12.0",
14
14
  "zod": "^3.23.0",
15
- "@plur-ai/core": "0.5.0"
15
+ "@plur-ai/core": "0.5.1"
16
16
  },
17
17
  "devDependencies": {
18
18
  "@types/node": "^25.5.0"