From de2a1b6382795f06de10ff38129032cb4124f5e6 Mon Sep 17 00:00:00 2001 From: Yakko Majuri <38760734+yakkomajuri@users.noreply.github.com> Date: Thu, 9 Apr 2026 17:17:44 -0300 Subject: [PATCH] chore: fix minor grammatical error in add_issue_comment tool description --- pkg/github/__toolsnaps__/add_issue_comment.snap | 2 +- pkg/github/issues.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/github/__toolsnaps__/add_issue_comment.snap b/pkg/github/__toolsnaps__/add_issue_comment.snap index d273a582d..da9331475 100644 --- a/pkg/github/__toolsnaps__/add_issue_comment.snap +++ b/pkg/github/__toolsnaps__/add_issue_comment.snap @@ -2,7 +2,7 @@ "annotations": { "title": "Add comment to issue" }, - "description": "Add a comment to a specific issue in a GitHub repository. Use this tool to add comments to pull requests as well (in this case pass pull request number as issue_number), but only if user is not asking specifically to add review comments.", + "description": "Add a comment to a specific issue in a GitHub repository. Use this tool to add comments to pull requests as well (in this case pass pull request number as issue_number), but only if the user is not asking specifically to add review comments.", "inputSchema": { "properties": { "body": { diff --git a/pkg/github/issues.go b/pkg/github/issues.go index 05af64cab..3c8a3d15a 100644 --- a/pkg/github/issues.go +++ b/pkg/github/issues.go @@ -592,7 +592,7 @@ func AddIssueComment(t translations.TranslationHelperFunc) inventory.ServerTool ToolsetMetadataIssues, mcp.Tool{ Name: "add_issue_comment", - Description: t("TOOL_ADD_ISSUE_COMMENT_DESCRIPTION", "Add a comment to a specific issue in a GitHub repository. Use this tool to add comments to pull requests as well (in this case pass pull request number as issue_number), but only if user is not asking specifically to add review comments."), + Description: t("TOOL_ADD_ISSUE_COMMENT_DESCRIPTION", "Add a comment to a specific issue in a GitHub repository. Use this tool to add comments to pull requests as well (in this case pass pull request number as issue_number), but only if the user is not asking specifically to add review comments."), Annotations: &mcp.ToolAnnotations{ Title: t("TOOL_ADD_ISSUE_COMMENT_USER_TITLE", "Add comment to issue"), ReadOnlyHint: false,