Plane MCP Server

Official

update_module

Modify specific fields of a module within a project on the Plane MCP Server by providing the project ID, module ID, and updated data. Streamlines module updates for project management workflows.

Instructions

Update an existing module

Input Schema

NameRequiredDescriptionDefault
module_dataYesThe fields to update on the module
module_idYesThe uuid identifier of the module to update
project_idYesThe uuid identifier of the project containing the module

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "module_data": { "additionalProperties": false, "description": "The fields to update on the module", "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" } }, "type": "object" }, "module_id": { "description": "The uuid identifier of the module to update", "type": "string" }, "project_id": { "description": "The uuid identifier of the project containing the module", "type": "string" } }, "required": [ "project_id", "module_id", "module_data" ], "type": "object" }
ID: y5g9z3v76n