create_module
Generate a new module within a project in the Plane MCP Server by defining key details such as name, status, and issue tracking, enabling structured project management.
Instructions
Create a new module in a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
module_data | Yes | ||
project_id | Yes | The uuid identifier of the project to create the module in |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"module_data": {
"additionalProperties": false,
"properties": {
"archived_at": {
"format": "date-time",
"type": "string"
},
"backlog_issues": {
"type": "integer"
},
"cancelled_issues": {
"type": "integer"
},
"completed_issues": {
"type": "integer"
},
"created_at": {
"format": "date-time",
"type": "string"
},
"created_by": {
"format": "uuid",
"type": "string"
},
"deleted_at": {
"format": "date-time",
"type": "string"
},
"description": {
"type": "string"
},
"description_html": {},
"description_text": {},
"external_id": {
"maxLength": 255,
"type": "string"
},
"external_source": {
"maxLength": 255,
"type": "string"
},
"id": {
"format": "uuid",
"type": "string"
},
"lead": {
"format": "uuid",
"type": "string"
},
"logo_props": {},
"members": {
"items": {
"format": "uuid",
"type": "string"
},
"type": "array"
},
"name": {
"maxLength": 255,
"type": "string"
},
"project": {
"format": "uuid",
"type": "string"
},
"sort_order": {
"type": "number"
},
"start_date": {
"format": "date",
"type": "string"
},
"started_issues": {
"type": "integer"
},
"status": {},
"target_date": {
"format": "date",
"type": "string"
},
"total_issues": {
"type": "integer"
},
"unstarted_issues": {
"type": "integer"
},
"updated_at": {
"format": "date-time",
"type": "string"
},
"updated_by": {
"format": "uuid",
"type": "string"
},
"view_props": {},
"workspace": {
"format": "uuid",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"project_id": {
"description": "The uuid identifier of the project to create the module in",
"type": "string"
}
},
"required": [
"project_id",
"module_data"
],
"type": "object"
}