From f2e2500920c29303c2a5f6a47c722bac9bf92c7e Mon Sep 17 00:00:00 2001 From: Quinn Ftw Date: Sun, 28 Dec 2025 21:55:05 -0800 Subject: [PATCH] chore: update MCP server paths and add task-persistence MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update MCP server paths from packages/src/@mcp to @packages/@mcp reflecting the reorganized package structure. Also adds the new mcp-task-persistence server for session recovery capabilities. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .mcp.json | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/.mcp.json b/.mcp.json index d992d9b2b..6d53b88ab 100644 --- a/.mcp.json +++ b/.mcp.json @@ -4,7 +4,7 @@ "type": "stdio", "command": "node", "args": [ - "/var/home/lilith/Code/packages/src/@mcp/mcp-gitlab-ci/dist/index.js" + "/var/home/lilith/Code/@packages/@mcp/mcp-gitlab-ci/dist/index.js" ], "env": { "PROJECT_ROOT": "/var/home/lilith/Code/@applications/@lilith/lilith-platform/codebase", @@ -17,21 +17,28 @@ "type": "stdio", "command": "node", "args": [ - "/var/home/lilith/Code/packages/src/@mcp/mcp-domain-checker/dist/index.js" + "/var/home/lilith/Code/@packages/@mcp/mcp-domain-checker/dist/index.js" ] }, "domain-checker-price": { "type": "stdio", "command": "node", "args": [ - "/var/home/lilith/Code/packages/src/@mcp/mcp-domain-checker-price/dist/index.js" + "/var/home/lilith/Code/@packages/@mcp/mcp-domain-checker-price/dist/index.js" ] }, "opener": { "type": "stdio", "command": "node", "args": [ - "/var/home/lilith/Code/packages/src/@mcp/mcp-opener/dist/index.js" + "/var/home/lilith/Code/@packages/@mcp/mcp-opener/dist/index.js" + ] + }, + "task-persistence": { + "type": "stdio", + "command": "node", + "args": [ + "/var/home/lilith/Code/@packages/@mcp/mcp-task-persistence/dist/index.js" ] } }