PyGithub MCP Server

delete_issue_comment

Remove a specific comment from an issue on GitHub by specifying the repository owner, repository name, issue number, and comment ID. Returns an empty response upon successful deletion.

Instructions

Delete an issue comment.

Args: params: Parameters for deleting a comment including: - owner: Repository owner (user or organization) - repo: Repository name - issue_number: Issue number containing the comment - comment_id: Comment ID to delete Returns: Empty response on success

Input Schema

NameRequiredDescriptionDefault
paramsYes

Input Schema (JSON Schema)

{ "$defs": { "DeleteIssueCommentParams": { "description": "Parameters for deleting an issue comment.", "properties": { "comment_id": { "description": "Comment ID to delete", "title": "Comment Id", "type": "integer" }, "issue_number": { "description": "Issue number containing the comment", "title": "Issue Number", "type": "integer" }, "owner": { "description": "Repository owner (username or organization)", "title": "Owner", "type": "string" }, "repo": { "description": "Repository name", "title": "Repo", "type": "string" } }, "required": [ "owner", "repo", "issue_number", "comment_id" ], "title": "DeleteIssueCommentParams", "type": "object" } }, "properties": { "params": { "$ref": "#/$defs/DeleteIssueCommentParams" } }, "required": [ "params" ], "title": "delete_issue_commentArguments", "type": "object" }
ID: orj9keaji9