# create_issue (/docs/reference/mcp-tools/create_issue)



{/* Generated by apps/docs/scripts/generate-mcp-pages.mjs — do not edit by hand. */}

Create a work item (title-only or structured fields).

|                     |                    |
| ------------------- | ------------------ |
| Required permission | `work:write`       |
| Capability ID       | `workItems.create` |
| Destructive         | No                 |

## Parameters [#parameters]

| Parameter       | Type                                              | Required | Notes |
| --------------- | ------------------------------------------------- | -------- | ----- |
| `projectId`     | string (uuid)                                     | no       |       |
| `title`         | string                                            | no       |       |
| `quickAdd`      | string                                            | no       |       |
| `description`   | string                                            | no       |       |
| `statusId`      | string (uuid)                                     | no       |       |
| `priority`      | `URGENT` \| `HIGH` \| `MEDIUM` \| `LOW` \| `NONE` | no       |       |
| `assigneeId`    | string (uuid)                                     | no       |       |
| `labelIds`      | array of string (uuid)                            | no       |       |
| `parentId`      | string (uuid)                                     | no       |       |
| `estimateValue` | number                                            | no       |       |
| `startDate`     | string                                            | no       |       |
| `endDate`       | string                                            | no       |       |
| `dueDate`       | string                                            | no       |       |

## Input schema (JSON Schema) [#input-schema-json-schema]

```json
{
  "type": "object",
  "properties": {
    "projectId": {
      "type": "string",
      "format": "uuid"
    },
    "title": {
      "type": "string",
      "minLength": 1,
      "maxLength": 500
    },
    "quickAdd": {
      "type": "string",
      "minLength": 1
    },
    "description": {
      "type": "string"
    },
    "statusId": {
      "type": "string",
      "format": "uuid"
    },
    "priority": {
      "type": "string",
      "enum": [
        "URGENT",
        "HIGH",
        "MEDIUM",
        "LOW",
        "NONE"
      ]
    },
    "assigneeId": {
      "type": "string",
      "format": "uuid"
    },
    "labelIds": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "uuid"
      }
    },
    "parentId": {
      "type": "string",
      "format": "uuid"
    },
    "estimateValue": {
      "type": "number"
    },
    "startDate": {
      "type": "string",
      "pattern": "/^\\d{4}-\\d{2}-\\d{2}$/"
    },
    "endDate": {
      "type": "string",
      "pattern": "/^\\d{4}-\\d{2}-\\d{2}$/"
    },
    "dueDate": {
      "type": "string",
      "pattern": "/^\\d{4}-\\d{2}-\\d{2}$/"
    }
  },
  "additionalProperties": false
}
```

## Access control [#access-control]

A call succeeds only when the personal access token's scopes **and** the holder's role both allow `work:write` (effective permission = scope ∩ role, default-deny). The tool runs inside the token owner's organization — tenancy is never a parameter.
