create_merge_request_discussion_note
Add a note to an existing merge request discussion thread to provide feedback, ask questions, or continue collaboration on code changes.
Instructions
Add a new discussion note to an existing merge request thread
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | No | Project ID or complete URL-encoded path to project | |
| merge_request_iid | No | The IID of a merge request | |
| discussion_id | No | The ID of a thread | |
| body | Yes | The content of the note or reply | |
| created_at | No | Date the note was created at (ISO 8601 format) |
Implementation Reference
- schemas.ts:1011-1016 (schema)Input schema definition for the 'create_merge_request_discussion_note' tool, defining parameters like project_id, merge_request_iid, discussion_id, body, and optional created_at.merge_request_iid: z.coerce.string().describe("The IID of a merge request"), discussion_id: z.coerce.string().describe("The ID of a thread"), body: z.string().describe("The content of the note or reply"), created_at: z.string().optional().describe("Date the note was created at (ISO 8601 format)"), });