add_module_issues
Assign issues to a module in a project. Use this tool to link specific issue UUIDs to a module, ensuring organized task management within Plane MCP Server.
Instructions
Add issues to a module. Assign module to issues.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issues | Yes | Array of issue UUIDs to add to the module | |
module_id | Yes | The uuid identifier of the module to add issues to | |
project_id | Yes | The 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"
}