delete_merge_request_note
Remove a comment from a GitLab merge request to maintain clean discussions and accurate feedback.
Instructions
Delete an existing merge request note
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 | |
| note_id | No | The ID of a thread note |
Implementation Reference
- schemas.ts:982-986 (schema)Input schema definition for the 'delete_merge_request_note' MCP tool, defining parameters project_id, merge_request_iid, and note_id for deleting a note on a GitLab merge request.export const DeleteMergeRequestNoteSchema = ProjectParamsSchema.extend({ merge_request_iid: z.coerce.string().describe("The IID of a merge request"), note_id: z.coerce.string().describe("The ID of a thread note"), });