add_issue_comment
Add comments to GitHub issues by specifying the repository owner, repository name, issue number, and comment text using GitHub MCP Server Plus.
Instructions
Add a comment to an existing issue
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | ||
issue_number | Yes | ||
owner | Yes | ||
repo | Yes |
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"
}