Project Handoffs MCP Server
by davidorex
start_working_session
Start working on a next step
Input Schema
Name | Required | Description | Default |
---|---|---|---|
nextStepId | Yes | ID of the next step to work on | |
projectId | Yes | Project identifier |
Input Schema (JSON Schema)
{
"properties": {
"nextStepId": {
"description": "ID of the next step to work on",
"type": "string"
},
"projectId": {
"description": "Project identifier",
"type": "string"
}
},
"required": [
"projectId",
"nextStepId"
],
"type": "object"
}