prism-mcp-server 6.5.1 → 6.5.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/README.md +20 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
[](https://smithery.ai)
|
|
7
7
|
[](LICENSE)
|
|
8
8
|
[](https://www.typescriptlang.org/)
|
|
9
|
-
[](CONTRIBUTING.md)
|
|
10
10
|
|
|
11
11
|
**Your AI agent forgets everything between sessions. Prism fixes that.**
|
|
12
12
|
|
|
@@ -33,7 +33,7 @@ Works with **Claude Desktop · Claude Code · Cursor · Windsurf · Cline · Gem
|
|
|
33
33
|
- [Architecture](#architecture)
|
|
34
34
|
- [Scientific Foundation](#-scientific-foundation)
|
|
35
35
|
- [Product Roadmap](#-product-roadmap)
|
|
36
|
-
- [
|
|
36
|
+
- [Troubleshooting FAQ](#-troubleshooting-faq)
|
|
37
37
|
|
|
38
38
|
---
|
|
39
39
|
|
|
@@ -395,6 +395,10 @@ Soft/hard delete (Art. 17), full export in JSON, Markdown, or Obsidian vault `.z
|
|
|
395
395
|
|
|
396
396
|
## 🆕 What's New
|
|
397
397
|
|
|
398
|
+
### v6.5.1 — Dashboard Project-Load Hotfix ✅
|
|
399
|
+
- 🩹 **Project Selector Recovery** — Fixed a startup path where the dashboard selector could stay stuck on "Loading projects..." when Supabase env vars were unresolved placeholders.
|
|
400
|
+
- 🔄 **Safe Backend Fallback** — If Supabase is requested but env is invalid/unresolved, Prism now auto-falls back to local SQLite so `/api/projects` and dashboard boot remain operational.
|
|
401
|
+
|
|
398
402
|
### v6.5 — HDC Cognitive Routing ✅
|
|
399
403
|
> **Current stable release.** The Mind Palace gains a brain-inspired routing engine.
|
|
400
404
|
|
|
@@ -743,9 +747,21 @@ Full Superposed Memory (SDM) + Hyperdimensional Computing (HDC/VSA) becomes the
|
|
|
743
747
|
- **v7.x: Affect-Tagged Memory** — Recall prioritization improves by weighting memories with affective/contextual valence, making surfaced context more behaviorally useful.
|
|
744
748
|
- **v8+: Zero-Search Retrieval** — Direct vector-addressed recall (“just ask the vector”) reduces retrieval indirection and moves Prism toward truly native associative memory.
|
|
745
749
|
|
|
746
|
-
---
|
|
747
750
|
|
|
748
|
-
##
|
|
751
|
+
## ❓ Troubleshooting FAQ
|
|
752
|
+
|
|
753
|
+
**Q: Why is the dashboard project selector stuck on "Loading projects..."?**
|
|
754
|
+
A: This usually means Supabase env values are unresolved placeholders (for example `${SUPABASE_URL}`) or invalid. As of v6.5.1 Prism auto-falls back to local SQLite, but you should still fix env values for cloud mode.
|
|
755
|
+
|
|
756
|
+
**Q: Why is semantic search quality weak or inconsistent?**
|
|
757
|
+
A: Check embedding provider configuration and key availability. Missing embedding credentials reduce semantic recall quality and can shift behavior toward keyword-heavy matches.
|
|
758
|
+
|
|
759
|
+
**Q: How do I delete a bad memory entry?**
|
|
760
|
+
A: Use `session_forget_memory` for targeted soft/hard deletion. For manual cleanup and merge workflows, use the dashboard graph editor.
|
|
761
|
+
|
|
762
|
+
**Q: How do I verify the install quickly?**
|
|
763
|
+
A: Run `npm run build && npm test`, then open the Mind Palace dashboard (`localhost:3000`) and confirm projects load plus Graph Health renders.
|
|
764
|
+
|
|
749
765
|
|
|
750
766
|
- **LLM-dependent features require an API key.** Semantic search, Morning Briefings, auto-compaction, and VLM captioning need a `GOOGLE_API_KEY` (Gemini) or equivalent provider key. Without one, Prism falls back to keyword-only search (FTS5).
|
|
751
767
|
- **Auto-load is model- and client-dependent.** Session auto-loading relies on both the LLM following system prompt instructions *and* the MCP client completing tool registration before the model's first turn. Prism provides platform-specific [Setup Guides](#-setup-guides) and a server-side fallback (v5.2.1) that auto-pushes context after 10 seconds.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "prism-mcp-server",
|
|
3
|
-
"version": "6.5.
|
|
3
|
+
"version": "6.5.2",
|
|
4
4
|
"mcpName": "io.github.dcostenco/prism-mcp",
|
|
5
5
|
"description": "The Mind Palace for AI Agents — persistent memory (SQLite/Supabase), behavioral learning & IDE rules sync, multimodal VLM image captioning, pluggable LLM providers (OpenAI/Anthropic/Gemini/Ollama), OpenTelemetry distributed tracing, GDPR export, multi-agent Hivemind sync, time travel, visual Mind Palace dashboard. Zero-config local mode.",
|
|
6
6
|
"module": "index.ts",
|