@vheins/local-memory-mcp 0.3.25 → 0.3.27

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/README.md CHANGED
@@ -63,6 +63,16 @@ This method ensures the fastest startup times and maximum reliability for daily
63
63
 
64
64
  Visualize and manage your Agent's memory through a modern web interface.
65
65
 
66
+ ````carousel
67
+ ![Dashboard Overview](docs/screenshots/dashboard.png)
68
+ <!-- slide -->
69
+ ![Memories Management](docs/screenshots/memories.png)
70
+ <!-- slide -->
71
+ ![Task Tracking](docs/screenshots/tasks.png)
72
+ <!-- slide -->
73
+ ![Available Tools & Reference](docs/screenshots/reference.png)
74
+ ````
75
+
66
76
  ### How to Run
67
77
  ```bash
68
78
  local-memory-mcp dashboard
@@ -1010,8 +1010,18 @@
1010
1010
  </button>
1011
1011
 
1012
1012
  <div class="hidden md:flex items-center gap-2 px-3 py-1.5 bg-white/50 dark:bg-slate-800/50 backdrop-blur-md border border-slate-200 dark:border-slate-700 rounded-xl shadow-sm">
1013
- <div id="statusDot" class="w-2 h-2 rounded-full bg-gray-400 shadow-[0_0_8px_rgba(156,163,175,0.5)]"></div>
1014
- <span id="statusText" class="text-[10px] font-bold uppercase tracking-wider text-slate-600 dark:text-slate-300">Checking...</span>
1013
+ <div id="statusDot" class="w-1.5 h-1.5 rounded-full bg-gray-400 shadow-[0_0_8px_rgba(156,163,175,0.5)]"></div>
1014
+ <span id="statusText" class="text-[9px] font-bold uppercase tracking-wider text-slate-600 dark:text-slate-300">Checking...</span>
1015
+ </div>
1016
+
1017
+ <div class="hidden md:flex flex-col gap-1 px-3 py-1.5 bg-white/50 dark:bg-slate-800/50 backdrop-blur-md border border-slate-200 dark:border-slate-700 rounded-xl shadow-sm min-w-[120px]">
1018
+ <div class="flex items-center justify-between gap-3">
1019
+ <span id="syncStatus" class="text-[9px] font-bold text-slate-400 uppercase tracking-widest leading-none">Synced 0s ago</span>
1020
+ <div class="w-1 h-1 rounded-full bg-emerald-500 animate-pulse"></div>
1021
+ </div>
1022
+ <div class="w-full h-0.5 bg-slate-100 dark:bg-slate-800 rounded-full overflow-hidden">
1023
+ <div id="countdownFill" class="h-full bg-sky-500 transition-all duration-1000 ease-linear" style="width: 100%"></div>
1024
+ </div>
1015
1025
  </div>
1016
1026
 
1017
1027
  <div class="h-8 w-[1px] bg-slate-200 dark:bg-slate-800 hidden md:block"></div>
@@ -1434,18 +1444,6 @@
1434
1444
  <button onclick="clearSelection()" class="px-4 py-2 bg-white/10 dark:bg-slate-200 hover:bg-white/20 dark:hover:bg-slate-300 text-white dark:text-slate-900 rounded-lg text-xs font-bold transition-all">Clear</button>
1435
1445
  </div>
1436
1446
 
1437
- <!-- Sync Indicator -->
1438
- <div class="fixed bottom-6 right-6 z-30">
1439
- <div class="bg-white/80 dark:bg-slate-900/80 backdrop-blur-md p-3 rounded-2xl shadow-xl border border-slate-200 dark:border-slate-800 flex flex-col gap-2 min-w-[160px]">
1440
- <div class="flex items-center justify-between">
1441
- <span id="syncStatus" class="text-[10px] font-bold text-slate-400 uppercase tracking-widest">Synced 0s ago</span>
1442
- <div class="w-1.5 h-1.5 rounded-full bg-emerald-500 animate-pulse"></div>
1443
- </div>
1444
- <div class="w-full h-1 bg-slate-100 dark:bg-slate-800 rounded-full overflow-hidden">
1445
- <div id="countdownFill" class="h-full bg-sky-500 transition-all duration-1000 ease-linear" style="width: 100%"></div>
1446
- </div>
1447
- </div>
1448
- </div>
1449
1447
 
1450
1448
  <!-- Toast Container -->
1451
1449
  <div id="toastContainer" class="fixed top-24 right-6 z-[60] flex flex-col gap-3 pointer-events-none"></div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vheins/local-memory-mcp",
3
- "version": "0.3.25",
3
+ "version": "0.3.27",
4
4
  "description": "MCP Local Memory Service for coding copilot agents",
5
5
  "mcpName": "io.github.vheins/local-memory-mcp",
6
6
  "type": "module",