GitHub MCP Server Plus

update_issue

Update an existing issue in a GitHub repository

Input Schema

NameRequiredDescriptionDefault
assigneesNo
bodyNo
issue_numberYes
labelsNo
milestoneNo
ownerYes
repoYes
stateNo
titleNo

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "assignees": { "items": { "type": "string" }, "type": "array" }, "body": { "type": "string" }, "issue_number": { "type": "number" }, "labels": { "items": { "type": "string" }, "type": "array" }, "milestone": { "type": "number" }, "owner": { "type": "string" }, "repo": { "type": "string" }, "state": { "enum": [ "open", "closed" ], "type": "string" }, "title": { "type": "string" } }, "required": [ "owner", "repo", "issue_number" ], "type": "object" }