Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
cleanup
  • Loading branch information
christothes committed May 1, 2025
commit 8ab51f1805e5ba38f5a7dfd3c0527972d6e69ef3
1 change: 0 additions & 1 deletion src/Utility/MCP/McpClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ public virtual async Task<BinaryData> CallToolAsync(string toolName, BinaryData
if (_session == null)
throw new InvalidOperationException("Session is not initialized. Call StartAsync() first.");

Console.WriteLine($"Calling tool {toolName}...");
return await _session.CallTool(toolName, parameters).ConfigureAwait(false);
}
}
2 changes: 1 addition & 1 deletion src/Utility/MCP/McpSession.cs
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ private static void DebugPrint(string message)
{
#if DEBUGPRINT
var color = Console.ForegroundColor;
Console.ForegroundColor = ConsoleColor.DarkGray;// This is a placeholder for a debug print functi
Console.ForegroundColor = ConsoleColor.DarkGray;
Console.WriteLine(message);
Console.ForegroundColor = color;
#endif
Expand Down