assess_archive_task_to_collection
Moves a task to a specified collection within the addTaskManager MCP Server, ensuring organized task management under the ADD framework. Requires task and collection record names.
Instructions
Archive a task to a collection.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collectionRecordName | Yes | Record name of the collection | |
taskRecordName | Yes | Record name of the task |
Input Schema (JSON Schema)
{
"properties": {
"collectionRecordName": {
"description": "Record name of the collection",
"type": "string"
},
"taskRecordName": {
"description": "Record name of the task",
"type": "string"
}
},
"required": [
"taskRecordName",
"collectionRecordName"
],
"type": "object"
}