moltmind 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
@@ -25,7 +25,7 @@ const moltbookInstructions = isMoltbookEnabled()
25
25
  : "";
26
26
  const server = new McpServer({
27
27
  name: "moltmind",
28
- version: "0.5.0",
28
+ version: "0.5.1",
29
29
  }, {
30
30
  instructions: `MoltMind provides persistent memory and session continuity. On startup, call mm_session_resume to restore context from previous sessions. Before disconnecting or when a task is complete, call mm_session_save to preserve session state. Use mm_handoff_create to checkpoint progress during long tasks.${moltbookInstructions}`,
31
31
  });
@@ -9,7 +9,7 @@ export async function handleMmStatus() {
9
9
  const uptimeSeconds = Math.floor((Date.now() - startTime) / 1000);
10
10
  return {
11
11
  success: true,
12
- version: "0.5.0",
12
+ version: "0.5.1",
13
13
  tier: isProTier() ? "pro" : "free",
14
14
  usage: checkStoreLimits().message,
15
15
  db_stats: stats,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "moltmind",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "Agent Memory MCP Server — persistent semantic memory and session continuity for AI agents",
5
5
  "type": "module",
6
6
  "bin": {