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

39 lines
911 B
Plaintext

{
"annotations": {
"destructiveHint": false,
"idempotentHint": false,
"openWorldHint": true,
"readOnlyHint": false,
"title": "Update Pull Request Body"
},
"description": "Update the body description of an existing pull request.",
"inputSchema": {
"properties": {
"body": {
"description": "The new body content for the pull request",
"type": "string"
},
"owner": {
"description": "Repository owner (username or organization)",
"type": "string"
},
"pullNumber": {
"description": "The pull request number",
"minimum": 1,
"type": "number"
},
"repo": {
"description": "Repository name",
"type": "string"
}
},
"required": [
"owner",
"repo",
"pullNumber",
"body"
],
"type": "object"
},
"name": "update_pull_request_body"
}