Plane MCP Server

Official

add_module_issues

Assign issues to a specific module within a project using project and module UUIDs. Simplifies organizing and managing related tasks in Plane MCP Server's project management system.

Instructions

Add issues to a module. Assign module to issues.

Input Schema

NameRequiredDescriptionDefault
issuesYesArray of issue UUIDs to add to the module
module_idYesThe uuid identifier of the module to add issues to
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": { "issues": { "description": "Array of issue UUIDs to add to the module", "items": { "type": "string" }, "type": "array" }, "module_id": { "description": "The uuid identifier of the module to add issues to", "type": "string" }, "project_id": { "description": "The uuid identifier of the project containing the module", "type": "string" } }, "required": [ "project_id", "module_id", "issues" ], "type": "object" }
ID: y5g9z3v76n