Files
2026-07-13 12:37:57 +08:00

39 lines
876 B
Plaintext

{
"annotations": {
"destructiveHint": false,
"idempotentHint": false,
"openWorldHint": true,
"readOnlyHint": false,
"title": "Update Issue Title"
},
"description": "Update the title of an existing issue.",
"inputSchema": {
"properties": {
"issue_number": {
"description": "The issue number to update",
"minimum": 1,
"type": "number"
},
"owner": {
"description": "Repository owner (username or organization)",
"type": "string"
},
"repo": {
"description": "Repository name",
"type": "string"
},
"title": {
"description": "The new title for the issue",
"type": "string"
}
},
"required": [
"owner",
"repo",
"issue_number",
"title"
],
"type": "object"
},
"name": "update_issue_title"
}