We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09f75c3 commit d068e52Copy full SHA for d068e52
src/filesystem/index.ts
@@ -164,16 +164,6 @@ const server = new Server(
164
{
165
capabilities: {
166
listChanged: false,
167
- tools: {
168
- search_files: {
169
- description: "Recursively search for files/directories with optional exclude patterns",
170
- inputSchema: zodToJsonSchema(SearchFilesArgsSchema),
171
- handler: async (args: z.infer<typeof SearchFilesArgsSchema>) => {
172
- const validatedPath = await validatePath(args.path);
173
- return searchFiles(validatedPath, args.pattern, args.excludePatterns);
174
- },
175
176
177
},
178
179
);
0 commit comments