@jungjaehoon/mama-server 1.4.1 → 1.4.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jungjaehoon/mama-server",
3
- "version": "1.4.1",
3
+ "version": "1.4.2",
4
4
  "description": "MAMA MCP Server - Memory-Augmented MCP Assistant for Claude Code & Desktop",
5
5
  "main": "src/server.js",
6
6
  "bin": {
@@ -29,7 +29,7 @@ const { createGraphHandler } = require('./viewer/graph-api.js');
29
29
  const graphHandler = createGraphHandler();
30
30
 
31
31
  // Configuration
32
- const DEFAULT_PORT = 3847;
32
+ const DEFAULT_PORT = parseInt(process.env.MAMA_HTTP_PORT, 10) || 3847;
33
33
  const HOST = '127.0.0.1'; // localhost only for security
34
34
 
35
35
  // Port file for clients to discover the server