Skip to main content
Create a new issue in a project

Tool details

FieldValue
Namegitlab__create_issue
GroupIntegrations

Playground

Input schema

Input schema
{
  "type": "object",
  "properties": {
    "projectId": {
      "type": "string",
      "description": "GitLab numeric project ID or raw namespace/project path"
    },
    "title": {
      "type": "string",
      "description": "Issue title"
    },
    "description": {
      "type": "string",
      "description": "Issue description"
    },
    "labels": {
      "type": "string",
      "description": "Comma-separated labels"
    },
    "assignee_ids": {
      "type": "array",
      "description": "GitLab user IDs to assign"
    }
  },
  "required": [
    "projectId",
    "title"
  ],
  "description": "Input schema for the gitlab__create_issue tool."
}

Output schema

This tool does not publish an output schema.