archive-all-cards-in-list
Archive all cards in a specified Trello list using the Advanced Trello MCP Server. Simplifies list cleanup by automating card archiving with a single operation.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
listId | Yes | ID of the list to archive all cards in |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"listId": {
"description": "ID of the list to archive all cards in",
"type": "string"
}
},
"required": [
"listId"
],
"type": "object"
}