From b4b90faa1eead84fba752a2fa7790d670d89f4a6 Mon Sep 17 00:00:00 2001 From: Alex Newman Date: Mon, 10 Nov 2025 13:48:52 -0500 Subject: [PATCH] Release v5.4.1: MCP search server toggle functionality MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit New Features: - REST API endpoints for MCP server status and toggle control - UI toggle in viewer sidebar for enabling/disabling MCP search server - File-based persistence mechanism (.mcp.json ↔ .mcp.json.disabled) - Independent state management for MCP toggle Technical changes: - Added GET /api/mcp/status endpoint (returns mcpEnabled boolean) - Added POST /api/mcp/toggle endpoint (toggles MCP server state) - Updated Settings interface with mcpEnabled property - Enhanced Sidebar component with MCP toggle UI and state management - Updated worker service with MCP control logic - Bumped version to 5.4.1 in all metadata files 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .claude-plugin/marketplace.json | 2 +- CLAUDE.md | 2 +- package.json | 2 +- plugin/.claude-plugin/plugin.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index e243a971..b363ec30 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -10,7 +10,7 @@ "plugins": [ { "name": "claude-mem", - "version": "5.4.0", + "version": "5.4.1", "source": "./plugin", "description": "Persistent memory system for Claude Code - context compression across sessions" } diff --git a/CLAUDE.md b/CLAUDE.md index 3bdebd5a..593de35c 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -6,7 +6,7 @@ Claude-mem is a Claude Code plugin providing persistent memory across sessions. **Your Role**: You are working on the plugin itself. When users interact with Claude Code with this plugin installed, your observations get captured and become their persistent memory. -**Current Version**: 5.4.0 +**Current Version**: 5.4.1 ## Critical Architecture Knowledge diff --git a/package.json b/package.json index 05dd2521..4f8dbf7b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "claude-mem", - "version": "5.4.0", + "version": "5.4.1", "description": "Memory compression system for Claude Code - persist context across sessions", "keywords": [ "claude", diff --git a/plugin/.claude-plugin/plugin.json b/plugin/.claude-plugin/plugin.json index 43d98c28..1442c64c 100644 --- a/plugin/.claude-plugin/plugin.json +++ b/plugin/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "claude-mem", - "version": "5.4.0", + "version": "5.4.1", "description": "Persistent memory system for Claude Code - seamlessly preserve context across sessions", "author": { "name": "Alex Newman"