Project Handoffs MCP Server
by davidorex
create_handoff
Complete a working session with handoff details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
codeState | Yes | Current state of codebase | |
completedWork | Yes | Summary of completed work | |
environmentState | Yes | Development environment state | |
newNextSteps | No | List of new next steps identified | |
projectId | Yes | Project identifier | |
sessionId | Yes | Working session ID | |
unresolvedIssues | No | List of unresolved issues |
Input Schema (JSON Schema)
{
"properties": {
"codeState": {
"description": "Current state of codebase",
"type": "string"
},
"completedWork": {
"description": "Summary of completed work",
"type": "string"
},
"environmentState": {
"description": "Development environment state",
"type": "string"
},
"newNextSteps": {
"description": "List of new next steps identified",
"items": {
"type": "string"
},
"type": "array"
},
"projectId": {
"description": "Project identifier",
"type": "string"
},
"sessionId": {
"description": "Working session ID",
"type": "string"
},
"unresolvedIssues": {
"description": "List of unresolved issues",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"projectId",
"sessionId",
"completedWork",
"codeState",
"environmentState"
],
"type": "object"
}