nextjs-hackathon-stack 0.1.42 → 0.1.43

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": "nextjs-hackathon-stack",
3
- "version": "0.1.42",
3
+ "version": "0.1.43",
4
4
  "description": "Scaffold a full-stack Next.js hackathon starter",
5
5
  "type": "module",
6
6
  "bin": {
Binary file
@@ -36,10 +36,7 @@ DATABASE_URL=postgresql://postgres.your-project-id:[password]@aws-0-[region].poo
36
36
  docker compose up -d memory
37
37
  ```
38
38
 
39
- | URL | Purpose |
40
- |---|---|
41
- | `http://localhost:8000` | Dashboard — browse, search, and manage memories |
42
- | `http://localhost:8765/mcp` | MCP endpoint (used by all AI harnesses) |
39
+ MCP endpoint: `http://localhost:8765/mcp` (used by all AI harnesses)
43
40
 
44
41
  Memory is stored in `.memory/` (gitignored). The service starts automatically on next boot (`restart: unless-stopped`).
45
42
 
@@ -5,23 +5,43 @@ services:
5
5
  dockerfile: Dockerfile.memory
6
6
  container_name: mcp-memory
7
7
  ports:
8
- - "8000:8000" # Dashboard + REST API
9
8
  - "8765:8765" # MCP streamable-http transport
10
9
  volumes:
11
- - ./.memory/chroma:/app/chroma_db
12
- - ./.memory/backups:/app/backups
10
+ - ./.memory/data:/app/data
13
11
  environment:
14
12
  MCP_MODE: streamable-http
15
- MCP_HTTP_PORT: 8000
13
+ MCP_HTTP_PORT: 8765
14
+ MCP_HTTP_HOST: 0.0.0.0
15
+ MCP_ALLOW_ANONYMOUS_ACCESS: "true"
16
+ MCP_MEMORY_STORAGE_BACKEND: sqlite_vec
17
+ MCP_MEMORY_SQLITE_PATH: /app/data/memory.db
18
+ PYTHONUNBUFFERED: "1"
19
+ healthcheck:
20
+ test: ["CMD", "curl", "-sf", "http://localhost:8765/mcp"]
21
+ interval: 30s
22
+ timeout: 10s
23
+ retries: 3
24
+ restart: unless-stopped
25
+
26
+ memory-dashboard:
27
+ build:
28
+ context: .
29
+ dockerfile: Dockerfile.memory
30
+ container_name: mcp-memory-dashboard
31
+ ports:
32
+ - "8000:8000" # HTTP dashboard UI
33
+ volumes:
34
+ - ./.memory/data:/app/data
35
+ environment:
36
+ MCP_STANDALONE_MODE: "1"
16
37
  MCP_HTTP_HOST: 0.0.0.0
17
- MCP_SSE_PORT: 8765
18
- MCP_SSE_HOST: 0.0.0.0
38
+ MCP_HTTP_PORT: 8000
19
39
  MCP_ALLOW_ANONYMOUS_ACCESS: "true"
20
- MEMORY_CHROMA_PATH: /app/chroma_db
21
- MEMORY_BACKUPS_PATH: /app/backups
40
+ MCP_MEMORY_STORAGE_BACKEND: sqlite_vec
41
+ MCP_MEMORY_SQLITE_PATH: /app/data/memory.db
22
42
  PYTHONUNBUFFERED: "1"
23
43
  healthcheck:
24
- test: ["CMD", "curl", "-f", "http://localhost:8000/api/health"]
44
+ test: ["CMD", "curl", "-sf", "http://localhost:8000/health"]
25
45
  interval: 30s
26
46
  timeout: 10s
27
47
  retries: 3