update-issue
Modify existing GitHub repository issues by updating titles, descriptions, assignees, milestones, labels, or status through the GitHub Enterprise MCP Server.
Instructions
Update an existing issue in a GitHub repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignees | No | ||
body | No | ||
issue_number | Yes | ||
labels | No | ||
milestone | No | ||
owner | Yes | ||
repo | Yes | ||
state | No | ||
title | No |
Input Schema (JSON Schema)
{
"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"
}