From e47d9056e2e0d107ac5411d5a52f6df931d6a2ed Mon Sep 17 00:00:00 2001 From: Harshal Patil <12152047+harche@users.noreply.github.com> Date: Fri, 27 Feb 2026 15:18:32 -0500 Subject: [PATCH] fix: reduce default search results limit from 10 to 3 Lower the default number of search results to reduce response payload size and improve performance for typical queries. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/tools/prodisco/searchTools.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/prodisco/searchTools.ts b/src/tools/prodisco/searchTools.ts index 0783f3a..f7f3e0f 100644 --- a/src/tools/prodisco/searchTools.ts +++ b/src/tools/prodisco/searchTools.ts @@ -147,7 +147,7 @@ function createSearchToolsInputSchema(libraries: LibrarySpec[]) { .int() .positive() .max(50) - .default(10) + .default(3) .optional() .describe('Maximum number of results to return'), offset: z