@exaudeus/memory-mcp 1.9.7 → 1.9.8

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.
Files changed (2) hide show
  1. package/dist/index.js +4 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1784,8 +1784,10 @@ async function main() {
1784
1784
  await writeCrashReport(report).catch(() => { });
1785
1785
  }
1786
1786
  }
1787
- // Determine server mode based on lobe health
1788
- if (healthyLobes === 0) {
1787
+ // Determine server mode based on lobe health.
1788
+ // Zero configured lobes is a valid operational state: tools should stay available
1789
+ // so the agent can bootstrap the first project lobe.
1790
+ if (lobeConfigs.size > 0 && healthyLobes === 0) {
1789
1791
  serverMode = {
1790
1792
  kind: 'safe-mode',
1791
1793
  error: `All ${lobeConfigs.size} lobes failed to initialize.`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exaudeus/memory-mcp",
3
- "version": "1.9.7",
3
+ "version": "1.9.8",
4
4
  "description": "Codebase memory MCP server - persistent, evolving knowledge for AI coding agents",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",