fix: properly register search_files tool with schema in server setup

This commit is contained in:
devin-ai-integration[bot]
2024-12-06 21:53:53 +00:00
parent 9049f031cc
commit 22a79571d7

View File

@@ -164,7 +164,12 @@ const server = new Server(
{
capabilities: {
listChanged: false,
tools: {},
tools: {
search_files: {
description: "Recursively search for files/directories with optional exclude patterns",
inputSchema: zodToJsonSchema(SearchFilesArgsSchema),
},
},
},
},
);