gitlab_update_merge_request
Modify the title and description of a GitLab merge request using the internal ID and project identifier. Simplifies updating merge request details within GitLab MCP Server.
Instructions
Update a merge request title and description
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | The description of the merge request | |
merge_request_iid | Yes | The internal ID of the merge request | |
project_id | Yes | The ID or URL-encoded path of the project | |
title | No | The title of the merge request |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "The description of the merge request",
"type": "string"
},
"merge_request_iid": {
"description": "The internal ID of the merge request",
"type": "number"
},
"project_id": {
"description": "The ID or URL-encoded path of the project",
"type": "string"
},
"title": {
"description": "The title of the merge request",
"type": "string"
}
},
"required": [
"project_id",
"merge_request_iid"
],
"type": "object"
}