GitHub MCP Server Plus

add_issue_comment

Add a comment to an existing issue

Input Schema

NameRequiredDescriptionDefault
bodyYes
issue_numberYes
ownerYes
repoYes

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "body": { "type": "string" }, "issue_number": { "type": "number" }, "owner": { "type": "string" }, "repo": { "type": "string" } }, "required": [ "owner", "repo", "issue_number", "body" ], "type": "object" }