start_planning
Initiate a software development planning session by defining a clear goal. Manage tasks, track progress, and create detailed implementation plans effectively using the Model Context Protocol.
Instructions
Start a new planning session with a goal
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| goal | Yes | The software development goal to plan |
Implementation Reference
- src/index.ts:214-227 (handler)Handler for the 'start_planning' tool. Creates a new goal using storage.createGoal, initializes an empty plan with storage.createPlan, sets it as the current goal, and returns the SEQUENTIAL_THINKING_PROMPT as text content.case 'start_planning': { const { goal } = request.params.arguments as { goal: string }; this.currentGoal = await storage.createGoal(goal); await storage.createPlan(this.currentGoal.id); return { content: [ { type: 'text', text: SEQUENTIAL_THINKING_PROMPT, }, ], }; }
- src/index.ts:116-125 (schema)Input schema definition for the 'start_planning' tool, specifying an object with a required 'goal' string property.inputSchema: { type: 'object', properties: { goal: { type: 'string', description: 'The software development goal to plan', }, }, required: ['goal'], },
- src/index.ts:113-126 (registration)Registration of the 'start_planning' tool in the ListToolsRequestSchema response, including name, description, and input schema.{ name: 'start_planning', description: 'Start a new planning session with a goal', inputSchema: { type: 'object', properties: { goal: { type: 'string', description: 'The software development goal to plan', }, }, required: ['goal'], }, },