diff --git a/src/filesystem/index.ts b/src/filesystem/index.ts index 6829bf2b..0cd0e449 100644 --- a/src/filesystem/index.ts +++ b/src/filesystem/index.ts @@ -164,16 +164,6 @@ const server = new Server( { capabilities: { listChanged: false, - tools: { - search_files: { - description: "Recursively search for files/directories with optional exclude patterns", - inputSchema: zodToJsonSchema(SearchFilesArgsSchema), - handler: async (args: z.infer) => { - const validatedPath = await validatePath(args.path); - return searchFiles(validatedPath, args.pattern, args.excludePatterns); - }, - }, - }, }, }, );