assess_archive_project_to_collection
Move a project to a specified collection for organization within the addTaskManager MCP Server. Requires project and collection record names for structured archiving.
Instructions
Archive a project to a collection.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collectionRecordName | Yes | Record name of the collection | |
projectRecordName | Yes | Record name of the project |
Input Schema (JSON Schema)
{
"properties": {
"collectionRecordName": {
"description": "Record name of the collection",
"type": "string"
},
"projectRecordName": {
"description": "Record name of the project",
"type": "string"
}
},
"required": [
"projectRecordName",
"collectionRecordName"
],
"type": "object"
}