Skip to main content
Glama
makeplane

Plane MCP Server

Official
by makeplane

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 to execute the action.

Instructions

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

Input Schema

TableJSON 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

Implementation Reference

  • Handler function that executes the DELETE request to unassign an issue from a module using makePlaneRequest.
    async ({ project_id, module_id, issue_id }) => {
      const response = await makePlaneRequest(
        "DELETE",
        `workspaces/${process.env.PLANE_WORKSPACE_SLUG}/projects/${project_id}/modules/${module_id}/module-issues/${issue_id}/`
      );
      return {
        content: [
          {
            type: "text",
            text: JSON.stringify(response, null, 2),
          },
        ],
      };
    }
  • Zod schema defining input parameters: project_id, module_id, issue_id.
    {
      project_id: z.string().describe("The uuid identifier of the project containing the module"),
      module_id: z.string().describe("The uuid identifier of the module containing the issue"),
      issue_id: z.string().describe("The uuid identifier of the issue to remove from the module"),
    },
  • Tool registration using server.tool() including name, description, schema, and handler.
    server.tool(
      "delete_module_issue",
      "Remove an issue from a module. Unassign module from issue.",
      {
        project_id: z.string().describe("The uuid identifier of the project containing the module"),
        module_id: z.string().describe("The uuid identifier of the module containing the issue"),
        issue_id: z.string().describe("The uuid identifier of the issue to remove from the module"),
      },
      async ({ project_id, module_id, issue_id }) => {
        const response = await makePlaneRequest(
          "DELETE",
          `workspaces/${process.env.PLANE_WORKSPACE_SLUG}/projects/${project_id}/modules/${module_id}/module-issues/${issue_id}/`
        );
        return {
          content: [
            {
              type: "text",
              text: JSON.stringify(response, null, 2),
            },
          ],
        };
      }
    );

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/makeplane/plane-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server