Project Handoffs MCP Server
by davidorex
create_next_step
Create a new next step in a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dependencies | No | IDs of steps that must be completed first | |
description | Yes | Detailed description of work | |
parentStepId | No | ID of parent step if this is a substep | |
priority | Yes | Implementation priority level | |
projectId | Yes | Project identifier | |
title | Yes | Brief 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"
}