approve_task
Approve a completed task marked as 'done' with completedDetails in the taskqueue-mcp server. Requires human intervention via CLI using projectId and taskId to execute the approval.
Instructions
Approve a completed task. Tasks must be marked as 'done' with completedDetails before approval. Note: This is a CLI-only operation that requires human intervention.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectId | Yes | The ID of the project containing the task (e.g., proj-1). | |
taskId | Yes | The ID of the task to approve (e.g., task-1). |
Input Schema (JSON Schema)
{
"properties": {
"projectId": {
"description": "The ID of the project containing the task (e.g., proj-1).",
"type": "string"
},
"taskId": {
"description": "The ID of the task to approve (e.g., task-1).",
"type": "string"
}
},
"required": [
"projectId",
"taskId"
],
"type": "object"
}