prism-mcp-server 2.3.1 → 2.3.3
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 +1 -1
- package/dist/config.js +1 -1
- package/dist/dashboard/ui.js +2 -2
- package/dist/server.js +4 -2
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/config.js
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
// multi-tenant Row Level Security (RLS) for production hosting.
|
|
23
23
|
export const SERVER_CONFIG = {
|
|
24
24
|
name: "prism-mcp",
|
|
25
|
-
version: "2.3.
|
|
25
|
+
version: "2.3.3",
|
|
26
26
|
};
|
|
27
27
|
// ─── Required: Brave Search API Key ───────────────────────────
|
|
28
28
|
export const BRAVE_API_KEY = process.env.BRAVE_API_KEY;
|
package/dist/dashboard/ui.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Mind Palace Dashboard — UI Renderer (v2.3.
|
|
2
|
+
* Mind Palace Dashboard — UI Renderer (v2.3.3)
|
|
3
3
|
*
|
|
4
4
|
* Pure CSS + Vanilla JS single-page dashboard.
|
|
5
5
|
* No build step, no Tailwind, no framework — served as a template literal.
|
|
@@ -279,7 +279,7 @@ export function renderDashboardHTML() {
|
|
|
279
279
|
<div class="logo">
|
|
280
280
|
<span class="logo-icon">🧠</span>
|
|
281
281
|
Prism Mind Palace
|
|
282
|
-
<span class="version-badge">v2.3.
|
|
282
|
+
<span class="version-badge">v2.3.3</span>
|
|
283
283
|
</div>
|
|
284
284
|
<div class="selector">
|
|
285
285
|
<select id="projectSelect">
|
package/dist/server.js
CHANGED
|
@@ -118,10 +118,12 @@ const SESSION_MEMORY_TOOLS = [
|
|
|
118
118
|
// ─── v2.2.0: Health Check tool ───
|
|
119
119
|
SESSION_HEALTH_CHECK_TOOL, // session_health_check — brain integrity checker (v2.2.0)
|
|
120
120
|
];
|
|
121
|
-
// Combine:
|
|
121
|
+
// Combine: always list ALL tools so scanners (Glama, Smithery, MCP Registry)
|
|
122
|
+
// can enumerate the full capability set. Runtime guards in the CallTool handler
|
|
123
|
+
// still prevent execution without valid Supabase credentials.
|
|
122
124
|
const ALL_TOOLS = [
|
|
123
125
|
...BASE_TOOLS,
|
|
124
|
-
...
|
|
126
|
+
...SESSION_MEMORY_TOOLS,
|
|
125
127
|
];
|
|
126
128
|
// ─── v0.4.0: Resource Subscription Tracking ──────────────────────
|
|
127
129
|
// REVIEWER NOTE: We track which project URIs clients have subscribed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "prism-mcp-server",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.3",
|
|
4
4
|
"mcpName": "io.github.dcostenco/prism-mcp",
|
|
5
5
|
"description": "The Mind Palace for AI Agents — local-first MCP server with persistent memory (SQLite/Supabase), visual dashboard, time travel, multi-agent sync, Morning Briefings, reality drift detection, code mode templates, semantic vector search, and Brave Search + Gemini analysis. Zero-config local mode.",
|
|
6
6
|
"module": "index.ts",
|