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
Name | Required | Description | Default |
---|---|---|---|
goal | Yes | The software development goal to plan |
Input Schema (JSON Schema)
{
"properties": {
"goal": {
"description": "The software development goal to plan",
"type": "string"
}
},
"required": [
"goal"
],
"type": "object"
}