Skip to main content
Glama
TAgents

Planning System MCP Server

by TAgents

create_plan

Create structured project plans with phases, tasks, and milestones. Define plan title, description, and status to organize hierarchical planning for AI agents.

Instructions

Create a new plan

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYesPlan title
descriptionNoPlan description
statusNoPlan statusdraft

Implementation Reference

  • MCP tool handler for 'create_plan': dispatches to apiClient.plans.createPlan with input arguments and formats the response using formatResponse.
    if (name === "create_plan") {
      const result = await apiClient.plans.createPlan(args);
      return formatResponse(result);
    }
  • Input schema for the 'create_plan' tool defining parameters: title (required), description, status.
    inputSchema: {
      type: "object",
      properties: {
        title: { type: "string", description: "Plan title" },
        description: { type: "string", description: "Plan description" },
        status: { 
          type: "string", 
          description: "Plan status",
          enum: ["draft", "active", "completed", "archived"],
          default: "draft"
        }
      },
      required: ["title"]
    }
  • src/tools.js:122-138 (registration)
    Tool registration object for 'create_plan' in the ListTools response, including name, description, and inputSchema.
      name: "create_plan",
      description: "Create a new plan",
      inputSchema: {
        type: "object",
        properties: {
          title: { type: "string", description: "Plan title" },
          description: { type: "string", description: "Plan description" },
          status: { 
            type: "string", 
            description: "Plan status",
            enum: ["draft", "active", "completed", "archived"],
            default: "draft"
          }
        },
        required: ["title"]
      }
    },
  • Helper function in API client that performs HTTP POST to '/plans' endpoint to create a new plan.
    createPlan: async (planData) => {
      const response = await apiClient.post('/plans', planData);
      return response.data;
    },

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/TAgents/agent-planner-mcp'

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