File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -173,7 +173,7 @@ function shouldIncludeTool(toolName: string): boolean {
173173
174174server . setRequestHandler ( ListToolsRequestSchema , async ( ) => {
175175 try {
176- logToStderr ( 'debug' , 'Generating tools list...' ) ;
176+ // logToStderr('debug', 'Generating tools list...');
177177
178178 // Build complete tools array
179179 const allTools = [
@@ -965,7 +965,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
965965 // Filter tools based on current client
966966 const filteredTools = allTools . filter ( tool => shouldIncludeTool ( tool . name ) ) ;
967967
968- logToStderr ( 'debug' , `Returning ${ filteredTools . length } tools (filtered from ${ allTools . length } total) for client: ${ currentClient ?. name || 'unknown' } ` ) ;
968+ // logToStderr('debug', `Returning ${filteredTools.length} tools (filtered from ${allTools.length} total) for client: ${currentClient?.name || 'unknown'}`);
969969
970970 return {
971971 tools : filteredTools ,
You can’t perform that action at this time.
0 commit comments