mcp-server-gitlab

by ZephyrDeng
Verified

Gitlab Create MR Comment Tool

Add comments to merge requests in GitLab projects to streamline code review and collaboration. Specify project ID, merge request ID, and comment content for effective feedback.

Instructions

为指定项目的合并请求添加评论。

Input Schema

NameRequiredDescriptionDefault
commentYes评论内容
fieldsNo需要返回的字段路径数组
mergeRequestIdYes合并请求 ID
projectIdYes项目 ID

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "comment": { "description": "评论内容", "type": "string" }, "fields": { "description": "需要返回的字段路径数组", "items": { "type": "string" }, "type": "array" }, "mergeRequestId": { "description": "合并请求 ID", "type": "number" }, "projectId": { "description": "项目 ID", "type": "string" } }, "required": [ "projectId", "mergeRequestId", "comment" ], "type": "object" }
ID: x6a0een21s