We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b1a287 commit 28cad04Copy full SHA for 28cad04
mcp-server/src/Tool.ts
@@ -38,10 +38,6 @@ export abstract class Tool<TArgs extends object> {
38
let argsInstance: TArgs = args as TArgs;
39
this.logger.info("Executing tool: %s; arguments: %s", this.getToolName(), this.formatArgs(argsInstance));
40
41
- // TODO: Remove; testing only
42
- const sessionContext = this.mcpServer.getSessionContext();
43
- this.logger.info("Session context: %s", sessionContext ? JSON.stringify(sessionContext) : "none");
44
-
45
// execute the actual tool logic
46
let result = await this.executeCore(argsInstance);
47
0 commit comments