From 982d42151007bc3ca51818e569285e5bdcd5f1a1 Mon Sep 17 00:00:00 2001 From: Pim Messelink <274674234+messelink@users.noreply.github.com> Date: Thu, 16 Apr 2026 12:40:46 +0000 Subject: [PATCH] fix: update mempalace mcp command to use mempalace-mcp entry point cmd_mcp() in cli.py was still printing `python -m mempalace.mcp_server` as the setup command. Update to use the mempalace-mcp console entry point added in the previous commit. Co-Authored-By: Claude Opus 4.6 (1M context) --- mempalace/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mempalace/cli.py b/mempalace/cli.py index a5d3c7d..621b295 100644 --- a/mempalace/cli.py +++ b/mempalace/cli.py @@ -367,7 +367,7 @@ def cmd_instructions(args): def cmd_mcp(args): """Show how to wire MemPalace into MCP-capable hosts.""" - base_server_cmd = "python -m mempalace.mcp_server" + base_server_cmd = "mempalace-mcp" if args.palace: resolved_palace = str(Path(args.palace).expanduser())