@@ -210,6 +210,7 @@ func newToolConfig(opts []ToolOption) toolConfig {
210210// AllTools returns all tools with their embedded toolset metadata.
211211// Tool functions return ServerTool directly with toolset info.
212212func AllTools (t translations.TranslationHelperFunc , opts ... ToolOption ) []inventory.ServerTool {
213+ cfg := newToolConfig (opts )
213214 return withCSVOutput ([]inventory.ServerTool {
214215 // Context tools
215216 GetMe (t ),
@@ -272,7 +273,7 @@ func AllTools(t translations.TranslationHelperFunc, opts ...ToolOption) []invent
272273 UpdatePullRequestBranch (t ),
273274 CreatePullRequest (t ),
274275 UpdatePullRequest (t ),
275- PullRequestReviewWrite (t , opts ... ),
276+ pullRequestReviewWrite (t , false , cfg ),
276277 PullRequestReviewWriteWithResolutionReason (t , opts ... ),
277278 AddCommentToPendingReview (t ),
278279 AddReplyToPullRequestComment (t ),
@@ -372,7 +373,7 @@ func AllTools(t translations.TranslationHelperFunc, opts ...ToolOption) []invent
372373 GranularSubmitPendingPullRequestReview (t ),
373374 GranularDeletePendingPullRequestReview (t ),
374375 GranularAddPullRequestReviewComment (t ),
375- GranularResolveReviewThread (t , opts ... ),
376+ granularResolveReviewThread (t , false , cfg ),
376377 GranularResolveReviewThreadWithResolutionReason (t , opts ... ),
377378 GranularUnresolveReviewThread (t ),
378379 GranularAddPullRequestReviewCommentReaction (t ),
0 commit comments