Frontmatter
| id | 7483 |
| title | Implement PR Commenting Endpoint |
| state | Closed |
| labels | enhancementai |
| assignees | tobiu |
| createdAt | Oct 14, 2025, 12:47 PM |
| updatedAt | Oct 14, 2025, 12:55 PM |
| githubUrl | https://github.com/neomjs/neo/issues/7483 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | 7477 |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Oct 14, 2025, 12:55 PM |

To enable the agent to participate in code reviews, it needs the ability to post comments on pull requests. This ticket covers the implementation of a new endpoint on the GitHub Workflow MCP server for this purpose.
The endpoint will allow the agent to submit a comment for a specific pull request.
Acceptance Criteria
openapi.yamlis updated with a newPOST /pull-requests/{pr_number}/commentsendpoint.commenttext.createCommentfunction is added topullRequestService.mjs.gh pr commentcommand to post the comment to the specified pull request.routes/pullRequests.mjsfile is updated with the new route and handler.