Skip to main content
Add a comment/note to a GitLab merge request

Tool details

FieldValue
Namegitlab__add_merge_request_comment
GroupIntegrations

Playground

Input schema

Input schema
{
  "type": "object",
  "properties": {
    "projectId": {
      "type": "string",
      "description": "GitLab numeric project ID or raw namespace/project path"
    },
    "mergeRequestIid": {
      "type": "number",
      "description": "Project-local merge request IID"
    },
    "body": {
      "type": "string",
      "description": "Comment body in Markdown"
    },
    "internal": {
      "type": "boolean",
      "description": "Make the note internal when supported"
    }
  },
  "required": [
    "projectId",
    "mergeRequestIid",
    "body"
  ],
  "description": "Input schema for the gitlab__add_merge_request_comment tool."
}

Output schema

This tool does not publish an output schema.