@@ -94,7 +94,7 @@ func UpdatePullRequest(getClient GetClientFn, t translations.TranslationHelperFu
9494 mcp .Description ("New description" ),
9595 ),
9696 mcp .WithString ("state" ,
97- mcp .Description ("New state ('open' or 'closed') " ),
97+ mcp .Description ("New state" ),
9898 mcp .Enum ("open" , "closed" ),
9999 ),
100100 mcp .WithString ("base" ,
@@ -201,7 +201,7 @@ func ListPullRequests(getClient GetClientFn, t translations.TranslationHelperFun
201201 mcp .Description ("Repository name" ),
202202 ),
203203 mcp .WithString ("state" ,
204- mcp .Description ("Filter by state ('open', 'closed', 'all') " ),
204+ mcp .Description ("Filter by state" ),
205205 mcp .Enum ("open" , "closed" , "all" ),
206206 ),
207207 mcp .WithString ("head" ,
@@ -211,11 +211,11 @@ func ListPullRequests(getClient GetClientFn, t translations.TranslationHelperFun
211211 mcp .Description ("Filter by base branch" ),
212212 ),
213213 mcp .WithString ("sort" ,
214- mcp .Description ("Sort by ('created', 'updated', 'popularity', 'long-running') " ),
214+ mcp .Description ("Sort by category " ),
215215 mcp .Enum ("created" , "updated" , "popularity" , "long-running" ),
216216 ),
217217 mcp .WithString ("direction" ,
218- mcp .Description ("Sort direction ('asc', 'desc') " ),
218+ mcp .Description ("Sort direction" ),
219219 ),
220220 WithPagination (),
221221 ),
@@ -315,7 +315,7 @@ func MergePullRequest(getClient GetClientFn, t translations.TranslationHelperFun
315315 mcp .Description ("Extra detail for merge commit" ),
316316 ),
317317 mcp .WithString ("merge_method" ,
318- mcp .Description ("Merge method ('merge', 'squash', 'rebase') " ),
318+ mcp .Description ("Merge method" ),
319319 mcp .Enum ("merge" , "squash" , "rebase" ),
320320 ),
321321 ),
@@ -674,21 +674,21 @@ func AddPullRequestReviewComment(getClient GetClientFn, t translations.Translati
674674 mcp .Description ("The relative path to the file that necessitates a comment. Required unless in_reply_to is specified." ),
675675 ),
676676 mcp .WithString ("subject_type" ,
677- mcp .Description ("The level at which the comment is targeted ('line', 'file') " ),
677+ mcp .Description ("The level at which the comment is targeted" ),
678678 mcp .Enum ("line" , "file" ),
679679 ),
680680 mcp .WithNumber ("line" ,
681681 mcp .Description ("The line of the blob in the pull request diff that the comment applies to. For multi-line comments, the last line of the range" ),
682682 ),
683683 mcp .WithString ("side" ,
684- mcp .Description ("The side of the diff to comment on ('LEFT', 'RIGHT') " ),
684+ mcp .Description ("The side of the diff to comment on" ),
685685 mcp .Enum ("LEFT" , "RIGHT" ),
686686 ),
687687 mcp .WithNumber ("start_line" ,
688688 mcp .Description ("For multi-line comments, the first line of the range that the comment applies to" ),
689689 ),
690690 mcp .WithString ("start_side" ,
691- mcp .Description ("For multi-line comments, the starting side of the diff that the comment applies to ('LEFT', 'RIGHT') " ),
691+ mcp .Description ("For multi-line comments, the starting side of the diff that the comment applies to" ),
692692 mcp .Enum ("LEFT" , "RIGHT" ),
693693 ),
694694 mcp .WithNumber ("in_reply_to" ,
@@ -896,7 +896,7 @@ func CreatePullRequestReview(getClient GetClientFn, t translations.TranslationHe
896896 ),
897897 mcp .WithString ("event" ,
898898 mcp .Required (),
899- mcp .Description ("Review action ('APPROVE', 'REQUEST_CHANGES', 'COMMENT') " ),
899+ mcp .Description ("Review action to perform " ),
900900 mcp .Enum ("APPROVE" , "REQUEST_CHANGES" , "COMMENT" ),
901901 ),
902902 mcp .WithString ("commitId" ,
0 commit comments