Skip to main content
Update, close, or reopen a GitLab issue

Tool details

FieldValue
Namegitlab__update_issue
GroupIntegrations

Playground

Input schema

Input schema
{
  "type": "object",
  "properties": {
    "projectId": {
      "type": "string",
      "description": "GitLab numeric project ID or raw namespace/project path"
    },
    "issueIid": {
      "type": "number",
      "description": "Project-local issue IID"
    },
    "title": {
      "type": "string",
      "description": "Updated issue title"
    },
    "description": {
      "type": "string",
      "description": "Updated issue description"
    },
    "state_event": {
      "type": "string",
      "description": "close or reopen"
    },
    "labels": {
      "type": "string",
      "description": "Comma-separated replacement labels"
    },
    "assignee_ids": {
      "type": "array",
      "description": "GitLab user IDs to assign"
    }
  },
  "required": [
    "projectId",
    "issueIid"
  ],
  "description": "Input schema for the gitlab__update_issue tool."
}

Output schema

This tool does not publish an output schema.