get_merge_request_details
Retrieve comprehensive details about a specific GitLab merge request using its internal ID to access status, changes, and review information.
Instructions
Get detailed information about a specific merge request
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| merge_request_iid | Yes | Internal ID of the merge request |
Input Schema (JSON Schema)
{
"properties": {
"merge_request_iid": {
"description": "Internal ID of the merge request",
"minimum": 1,
"type": "integer"
}
},
"required": [
"merge_request_iid"
],
"type": "object"
}