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 CHANGED
@@ -14,7 +14,7 @@
14
14
 
15
15
  ---
16
16
 
17
- ## What's New in v2.3.0 — AI Reasoning Engine 🧠
17
+ ## What's New in v2.3.1 — AI Reasoning Engine 🧠
18
18
 
19
19
  | Feature | Description |
20
20
  |---|---|
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.1",
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;
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Mind Palace Dashboard — UI Renderer (v2.3.1)
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.1</span>
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: if session memory is enabled, add those tools too
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
- ...(SESSION_MEMORY_ENABLED ? SESSION_MEMORY_TOOLS : []),
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.1",
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",