Project Handoffs MCP Server

create_next_step

Create a new next step in a project

Input Schema

NameRequiredDescriptionDefault
dependenciesNoIDs of steps that must be completed first
descriptionYesDetailed description of work
parentStepIdNoID of parent step if this is a substep
priorityYesImplementation priority level
projectIdYesProject identifier
titleYesBrief title of the next step

Input Schema (JSON Schema)

{ "properties": { "dependencies": { "description": "IDs of steps that must be completed first", "items": { "type": "string" }, "type": "array" }, "description": { "description": "Detailed description of work", "type": "string" }, "parentStepId": { "description": "ID of parent step if this is a substep", "type": "string" }, "priority": { "description": "Implementation priority level", "enum": [ "core-critical", "full-required", "enhancement" ], "type": "string" }, "projectId": { "description": "Project identifier", "type": "string" }, "title": { "description": "Brief title of the next step", "type": "string" } }, "required": [ "projectId", "title", "description", "priority" ], "type": "object" }