create-issue
Create a new issue in a Plane project by providing a title, description, priority level, and optional assignees or labels to track project tasks.
Instructions
Create a new issue in a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignees | No | Array of user IDs to assign to this issue (optional) | |
description_html | No | HTML description of the issue (required by Plane API) | |
labels | No | Array of label IDs to assign to this issue (optional) | |
name | Yes | Title of the issue | |
priority | No | Priority of the issue (urgent, high, medium, low, none) | |
project_id | Yes | ID of the project where the issue should be created | |
state_id | No | ID of the state for this issue (optional) |
Input Schema (JSON Schema)
{
"properties": {
"assignees": {
"description": "Array of user IDs to assign to this issue (optional)",
"items": {
"type": "string"
},
"type": "array"
},
"description_html": {
"description": "HTML description of the issue (required by Plane API)",
"type": "string"
},
"labels": {
"description": "Array of label IDs to assign to this issue (optional)",
"items": {
"type": "string"
},
"type": "array"
},
"name": {
"description": "Title of the issue",
"type": "string"
},
"priority": {
"description": "Priority of the issue (urgent, high, medium, low, none)",
"enum": [
"urgent",
"high",
"medium",
"low",
"none"
],
"type": "string"
},
"project_id": {
"description": "ID of the project where the issue should be created",
"type": "string"
},
"state_id": {
"description": "ID of the state for this issue (optional)",
"type": "string"
}
},
"required": [
"project_id",
"name"
],
"type": "object"
}