From 7030c8bdb0eb360623069164ec91d3e0aadf11f5 Mon Sep 17 00:00:00 2001 From: Dhravya Shah Date: Thu, 19 Feb 2026 20:12:19 -0800 Subject: [PATCH] fix: effective tag --- apps/mcp/src/server.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/mcp/src/server.ts b/apps/mcp/src/server.ts index 6baa9d2c..e15ef984 100644 --- a/apps/mcp/src/server.ts +++ b/apps/mcp/src/server.ts @@ -384,9 +384,10 @@ export class SupermemoryMCP extends McpAgent { containerTag?: string }) { const { content, action = "save", containerTag } = args + const effectiveContainerTag = containerTag || this.props?.containerTag try { - const client = this.getClient(containerTag) + const client = this.getClient(effectiveContainerTag) const clientInfo = await this.getClientInfo() if (action === "forget") {