create_issue
Create a new issue in a GitLab project by specifying project ID, title, description, assignees, labels, and milestone. Streamline issue tracking and collaboration directly through the gitlab-mcp-server.
Instructions
Create a new issue in a GitLab project
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| assignee_ids | No | ||
| description | No | ||
| labels | No | ||
| milestone_id | No | ||
| project_id | No | ||
| title | No | 
Input Schema (JSON Schema)
{
  "properties": {
    "assignee_ids": {
      "items": {
        "type": "number"
      },
      "type": "array"
    },
    "description": {
      "type": "string"
    },
    "labels": {
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "milestone_id": {
      "type": "number"
    },
    "project_id": {
      "type": "string"
    },
    "title": {
      "type": "string"
    }
  },
  "type": "object"
}