Plane MCP Server

Official

create_issue

Generate and submit issues for a specific project in Plane’s system using the project’s UUID. Provide issue details like name, description, and metadata to manage tasks effectively.

Instructions

Create an issue. This requests project_id as uuid parameter. If you have a readable identifier for project, you can use the get_projects tool to get the project_id from it

Input Schema

NameRequiredDescriptionDefault
issue_dataYes
project_idYesThe uuid identifier of the project to create the issue for

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "issue_data": { "additionalProperties": false, "properties": { "archived_at": { "format": "date", "type": "string" }, "assignees": { "items": { "format": "uuid", "type": "string" }, "type": "array" }, "completed_at": { "format": "date-time", "type": "string" }, "created_at": { "format": "date-time", "type": "string" }, "created_by": { "format": "uuid", "type": "string" }, "deleted_at": { "format": "date-time", "type": "string" }, "description_binary": { "type": "string" }, "description_html": { "type": "string" }, "estimate_point": { "format": "uuid", "type": "string" }, "external_id": { "maxLength": 255, "type": "string" }, "external_source": { "maxLength": 255, "type": "string" }, "id": { "format": "uuid", "type": "string" }, "is_draft": { "type": "boolean" }, "labels": { "items": { "format": "uuid", "type": "string" }, "type": "array" }, "name": { "maxLength": 255, "type": "string" }, "parent": { "format": "uuid", "type": "string" }, "point": { "maximum": 12, "minimum": 0, "type": "integer" }, "priority": {}, "project": { "format": "uuid", "type": "string" }, "sequence_id": { "maximum": 2147483647, "minimum": -2147483648, "type": "integer" }, "sort_order": { "type": "number" }, "start_date": { "format": "date", "type": "string" }, "state": { "format": "uuid", "type": "string" }, "target_date": { "format": "date", "type": "string" }, "type": { "format": "uuid", "type": "string" }, "type_id": { "format": "uuid", "type": "string" }, "updated_at": { "format": "date-time", "type": "string" }, "updated_by": { "format": "uuid", "type": "string" }, "workspace": { "format": "uuid", "type": "string" } }, "required": [ "description_html", "name" ], "type": "object" }, "project_id": { "description": "The uuid identifier of the project to create the issue for", "type": "string" } }, "required": [ "project_id", "issue_data" ], "type": "object" }
ID: y5g9z3v76n