Skip to main content
Glama
makeplane

Plane MCP Server

Official
by makeplane

transfer_cycle_issues

Move issues from one project cycle to another within Plane MCP Server, ensuring continuity and organization by specifying project and cycle identifiers.

Instructions

Transfer issues from one cycle to another

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cycle_idYesThe uuid identifier of the source cycle
new_cycle_idYesThe uuid identifier of the target cycle
project_idYesThe uuid identifier of the project containing the cycle

Implementation Reference

  • Handler function that executes the transfer_cycle_issues tool by making a POST request to the Plane API endpoint for transferring issues between cycles.
    async ({ project_id, cycle_id, new_cycle_id }) => {
      const response = await makePlaneRequest(
        "POST",
        `workspaces/${process.env.PLANE_WORKSPACE_SLUG}/projects/${project_id}/cycles/${cycle_id}/transfer-issues/`,
        { new_cycle_id }
      );
      return {
        content: [
          {
            type: "text",
            text: JSON.stringify(response, null, 2),
          },
        ],
      };
    }
  • Input schema definition for the transfer_cycle_issues tool using Zod, specifying project_id, cycle_id, and new_cycle_id parameters.
    {
      project_id: z.string().describe("The uuid identifier of the project containing the cycle"),
      cycle_id: z.string().describe("The uuid identifier of the source cycle"),
      new_cycle_id: z.string().describe("The uuid identifier of the target cycle"),
    },
  • Registration of the transfer_cycle_issues tool via server.tool(), including name, description, schema, and handler.
    server.tool(
      "transfer_cycle_issues",
      "Transfer issues from one cycle to another",
      {
        project_id: z.string().describe("The uuid identifier of the project containing the cycle"),
        cycle_id: z.string().describe("The uuid identifier of the source cycle"),
        new_cycle_id: z.string().describe("The uuid identifier of the target cycle"),
      },
      async ({ project_id, cycle_id, new_cycle_id }) => {
        const response = await makePlaneRequest(
          "POST",
          `workspaces/${process.env.PLANE_WORKSPACE_SLUG}/projects/${project_id}/cycles/${cycle_id}/transfer-issues/`,
          { new_cycle_id }
        );
        return {
          content: [
            {
              type: "text",
              text: JSON.stringify(response, null, 2),
            },
          ],
        };
      }
    );
  • Top-level tool registration where registerCycleTools is called, which includes the transfer_cycle_issues tool.
    export const registerTools = (server: McpServer) => {
      registerMetadataTools(server);
      registerUserTools(server);
    
      registerProjectTools(server);
      registerModuleTools(server);
      registerModuleIssueTools(server);
      registerIssueTools(server);
      registerCycleTools(server);
      registerCycleIssueTools(server);
    
      registerWorkLogTools(server);
    };
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. 'Transfer' implies a mutation that moves issues between cycles, but it doesn't specify whether this is destructive (e.g., removes from source), requires permissions, handles errors, or affects issue states. This leaves significant gaps in understanding the tool's behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that front-loads the core action without unnecessary words. Every part earns its place by directly stating the tool's function, making it highly concise and well-structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity of a mutation tool with no annotations and no output schema, the description is incomplete. It lacks details on behavioral traits (e.g., side effects, error handling) and return values, leaving the agent with insufficient context to use the tool effectively beyond basic parameter passing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, with clear parameter descriptions in the schema (e.g., 'uuid identifier of the source cycle'). The tool description adds no additional meaning beyond implying a source-target relationship, so it meets the baseline of 3 where the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('transfer') and resource ('issues from one cycle to another'), making the tool's purpose immediately understandable. However, it doesn't explicitly differentiate from sibling tools like 'add_cycle_issues' or 'list_cycle_issues', which could involve similar resources but different operations.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. With siblings like 'add_cycle_issues' (which might add issues to a cycle) and 'list_cycle_issues' (which lists them), there's no indication of context, prerequisites, or exclusions for choosing this transfer operation.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Related Tools

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