@plur-ai/mcp 0.3.0 → 0.3.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.2.9";
4
+ var VERSION = "0.3.1";
5
5
  var HELP = `plur-mcp v${VERSION} \u2014 persistent memory for AI agents
6
6
 
7
7
  Usage:
@@ -18,7 +18,7 @@ Setup:
18
18
 
19
19
  {
20
20
  "mcpServers": {
21
- "plur": { "command": "npx", "args": ["-y", "@plur-ai/mcp"] }
21
+ "plur": { "command": "npx", "args": ["-y", "@plur-ai/mcp@latest"] }
22
22
  }
23
23
  }
24
24
 
@@ -58,14 +58,14 @@ if (arg === "init") {
58
58
  Claude Code (.claude/mcp.json):
59
59
  {
60
60
  "mcpServers": {
61
- "plur": { "command": "npx", "args": ["-y", "@plur-ai/mcp"] }
61
+ "plur": { "command": "npx", "args": ["-y", "@plur-ai/mcp@latest"] }
62
62
  }
63
63
  }
64
64
 
65
65
  Cursor (.cursor/mcp.json):
66
66
  {
67
67
  "mcpServers": {
68
- "plur": { "command": "npx", "args": ["-y", "@plur-ai/mcp"] }
68
+ "plur": { "command": "npx", "args": ["-y", "@plur-ai/mcp@latest"] }
69
69
  }
70
70
  }
71
71
 
@@ -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-I5WX7CVH.js");
78
+ const { runStdio } = await import("./server-ZY2JHPOE.js");
79
79
  runStdio().catch((err) => {
80
80
  console.error("Failed to start PLUR MCP server:", err);
81
81
  process.exit(1);
@@ -397,7 +397,7 @@ function getToolDefinitions() {
397
397
 
398
398
  // src/server.ts
399
399
  import { z } from "zod";
400
- var VERSION = "0.3.0";
400
+ var VERSION = "0.3.1";
401
401
  var INSTRUCTIONS = `PLUR is your persistent memory. It stores corrections, preferences, and conventions as engrams that persist across sessions.
402
402
 
403
403
  Use PLUR proactively:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plur-ai/mcp",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "plur-mcp": "dist/index.js",
@@ -13,7 +13,7 @@
13
13
  "dependencies": {
14
14
  "@modelcontextprotocol/sdk": "^1.12.0",
15
15
  "zod": "^3.23.0",
16
- "@plur-ai/core": "0.3.0"
16
+ "@plur-ai/core": "0.3.1"
17
17
  },
18
18
  "devDependencies": {
19
19
  "@types/node": "^25.5.0"