Plane MCP Server

Official

delete_module_issue

Remove an issue from a module and unassign the module from the issue in Plane MCP Server. Requires project_id, module_id, and issue_id for precise execution.

Instructions

Remove an issue from a module. Unassign module from issue.

Input Schema

NameRequiredDescriptionDefault
issue_idYesThe uuid identifier of the issue to remove from the module
module_idYesThe uuid identifier of the module containing the issue
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": { "issue_id": { "description": "The uuid identifier of the issue to remove from the module", "type": "string" }, "module_id": { "description": "The uuid identifier of the module containing the issue", "type": "string" }, "project_id": { "description": "The uuid identifier of the project containing the module", "type": "string" } }, "required": [ "project_id", "module_id", "issue_id" ], "type": "object" }
ID: y5g9z3v76n