nextjs-hackathon-stack 0.1.41 → 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.41",
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
@@ -0,0 +1,7 @@
1
+ FROM doobidoo/mcp-memory-service:latest
2
+
3
+ # Install missing runtime dependencies
4
+ RUN pip install --no-cache-dir \
5
+ aiosqlite \
6
+ sentence-transformers \
7
+ pypdf
@@ -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
 
@@ -1,25 +1,47 @@
1
1
  services:
2
2
  memory:
3
- image: doobidoo/mcp-memory-service:latest
3
+ build:
4
+ context: .
5
+ dockerfile: Dockerfile.memory
4
6
  container_name: mcp-memory
5
7
  ports:
6
- - "8000:8000" # Dashboard + REST API
7
8
  - "8765:8765" # MCP streamable-http transport
8
9
  volumes:
9
- - ./.memory/chroma:/app/chroma_db
10
- - ./.memory/backups:/app/backups
10
+ - ./.memory/data:/app/data
11
11
  environment:
12
12
  MCP_MODE: streamable-http
13
- MCP_HTTP_PORT: 8000
13
+ MCP_HTTP_PORT: 8765
14
14
  MCP_HTTP_HOST: 0.0.0.0
15
- MCP_SSE_PORT: 8765
16
- MCP_SSE_HOST: 0.0.0.0
17
15
  MCP_ALLOW_ANONYMOUS_ACCESS: "true"
18
- MEMORY_CHROMA_PATH: /app/chroma_db
19
- MEMORY_BACKUPS_PATH: /app/backups
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"
37
+ MCP_HTTP_HOST: 0.0.0.0
38
+ MCP_HTTP_PORT: 8000
39
+ MCP_ALLOW_ANONYMOUS_ACCESS: "true"
40
+ MCP_MEMORY_STORAGE_BACKEND: sqlite_vec
41
+ MCP_MEMORY_SQLITE_PATH: /app/data/memory.db
20
42
  PYTHONUNBUFFERED: "1"
21
43
  healthcheck:
22
- test: ["CMD", "curl", "-f", "http://localhost:8000/api/health"]
44
+ test: ["CMD", "curl", "-sf", "http://localhost:8000/health"]
23
45
  interval: 30s
24
46
  timeout: 10s
25
47
  retries: 3