Skip to content

Commit caf942c

Browse files
committed
Adjust create_or_update_file description to try avoid incorrect selection
1 parent 4ccedee commit caf942c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/github/repositories.go

Lines changed: 1 addition & 1 deletion
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. If updating, you must provide the SHA of the file you want to update.")),
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. This should only be used when creating or updating a file remotely and not when only working with local files.")),
232232
mcp.WithToolAnnotation(mcp.ToolAnnotation{
233233
Title: t("TOOL_CREATE_OR_UPDATE_FILE_USER_TITLE", "Create or update file"),
234234
ReadOnlyHint: toBoolPtr(false),

0 commit comments

Comments
 (0)