From 6eb8ce904989f9cee36b1abbb2df36853a1d31ce Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Mon, 17 Nov 2025 03:16:41 +0900 Subject: [PATCH] fix(sequential-thinking): Fix a typo for `nextThoughtNeeded` This PR fixes the `nextThoughtNeeded` parameter that was missed in #3004. --- src/sequentialthinking/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sequentialthinking/index.ts b/src/sequentialthinking/index.ts index 44af5c0e9d..809086a94c 100644 --- a/src/sequentialthinking/index.ts +++ b/src/sequentialthinking/index.ts @@ -69,7 +69,7 @@ You should: 8. Verify the hypothesis based on the Chain of Thought steps 9. Repeat the process until satisfied with the solution 10. Provide a single, ideally correct answer as the final output -11. Only set next_thought_needed to false when truly done and a satisfactory answer is reached`, +11. Only set nextThoughtNeeded to false when truly done and a satisfactory answer is reached`, inputSchema: { thought: z.string().describe("Your current thinking step"), nextThoughtNeeded: z.boolean().describe("Whether another thought step is needed"),