From 0b14738b4004d5acead650258dc0649877894bc8 Mon Sep 17 00:00:00 2001 From: Toby Padilla Date: Mon, 24 Mar 2025 17:22:11 -0600 Subject: [PATCH] fix: mention "me" and "my" in `get_me` description --- pkg/github/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/github/server.go b/pkg/github/server.go index 829994f19..d8b3714c9 100644 --- a/pkg/github/server.go +++ b/pkg/github/server.go @@ -85,7 +85,7 @@ func NewServer(client *github.Client, readOnly bool, t translations.TranslationH // getMe creates a tool to get details of the authenticated user. func getMe(client *github.Client, t translations.TranslationHelperFunc) (tool mcp.Tool, handler server.ToolHandlerFunc) { return mcp.NewTool("get_me", - mcp.WithDescription(t("TOOL_GET_ME_DESCRIPTION", "Get details of the authenticated GitHub user")), + mcp.WithDescription(t("TOOL_GET_ME_DESCRIPTION", "Get details of the authenticated GitHub user. Use this when a request include \"me\", \"my\"...")), mcp.WithString("reason", mcp.Description("Optional: reason the session was created"), ),