archive-list
Archive or unarchive Trello lists directly using a specified list ID and status, streamlining project management workflows with the Advanced Trello MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
archived | Yes | Whether to archive (true) or unarchive (false) the list | |
listId | Yes | ID of the list to archive or unarchive |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"archived": {
"description": "Whether to archive (true) or unarchive (false) the list",
"type": "boolean"
},
"listId": {
"description": "ID of the list to archive or unarchive",
"type": "string"
}
},
"required": [
"listId",
"archived"
],
"type": "object"
}