Skip to content

Commit a7d741c

Browse files
authored
fix: specify sha is required (#320)
1 parent 4e26dce commit a7d741c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/github/repositories.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ func ListBranches(getClient GetClientFn, t translations.TranslationHelperFunc) (
228228
// CreateOrUpdateFile creates a tool to create or update a file in a GitHub repository.
229229
func CreateOrUpdateFile(getClient GetClientFn, t translations.TranslationHelperFunc) (tool mcp.Tool, handler server.ToolHandlerFunc) {
230230
return mcp.NewTool("create_or_update_file",
231-
mcp.WithDescription(t("TOOL_CREATE_OR_UPDATE_FILE_DESCRIPTION", "Create or update a single file in a GitHub repository")),
231+
mcp.WithDescription(t("TOOL_CREATE_OR_UPDATE_FILE_DESCRIPTION", "Create or update a single file in a GitHub repository. If updating, you must provide the SHA of the file you want to update.")),
232232
mcp.WithToolAnnotation(mcp.ToolAnnotation{
233233
Title: t("TOOL_CREATE_OR_UPDATE_FILE_USER_TITLE", "Create or update file"),
234234
ReadOnlyHint: false,

0 commit comments

Comments
 (0)