archive-cards
Archive Trello cards in bulk by providing their IDs, streamlining board organization and decluttering workflows using the Trello MCP server integration.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cardIds | Yes | IDs of the cards to archive |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cardIds": {
"description": "IDs of the cards to archive",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"cardIds"
],
"type": "object"
}