From 10cb4e4075b4419583dabcc6ac7732ea8b4a4a36 Mon Sep 17 00:00:00 2001 From: cubelinux Date: Fri, 18 Sep 2026 17:57:24 -0400 Subject: [PATCH] Point the notes MCP at this tree's new home The repository moved from /home/CUBELinux/CUBELinux-2 to /home/CUBEdb, and the MCP server hardcoded its own CLI's path. One line, no behaviour change; without it the server would call a binary that no longer exists. --- cube-notes-mcp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cube-notes-mcp.py b/cube-notes-mcp.py index 27d474e..f75a147 100644 --- a/cube-notes-mcp.py +++ b/cube-notes-mcp.py @@ -9,7 +9,7 @@ which persists to `$CUBE_NOTES_DIR` (default ~/.cubelinux-notes). """ import sys, json, subprocess -CUBE = "/home/CUBELinux/CUBELinux-2/target/release/cube" +CUBE = "/home/CUBEdb/target/release/cube" SERVER_NAME = "cube-notes-mcp" SERVER_VERSION = "0.2.0" PROTOCOL_VERSION = "2024-11-05"