Project Handoffs MCP Server

create_handoff

Complete a working session with handoff details

Input Schema

NameRequiredDescriptionDefault
codeStateYesCurrent state of codebase
completedWorkYesSummary of completed work
environmentStateYesDevelopment environment state
newNextStepsNoList of new next steps identified
projectIdYesProject identifier
sessionIdYesWorking session ID
unresolvedIssuesNoList 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" }