diff --git a/mcp-server/src/Tool.ts b/mcp-server/src/Tool.ts index 90c5a41..65cfe53 100644 --- a/mcp-server/src/Tool.ts +++ b/mcp-server/src/Tool.ts @@ -38,10 +38,6 @@ export abstract class Tool { let argsInstance: TArgs = args as TArgs; this.logger.info("Executing tool: %s; arguments: %s", this.getToolName(), this.formatArgs(argsInstance)); - // TODO: Remove; testing only - const sessionContext = this.mcpServer.getSessionContext(); - this.logger.info("Session context: %s", sessionContext ? JSON.stringify(sessionContext) : "none"); - // execute the actual tool logic let result = await this.executeCore(argsInstance);