update-list
Modify Trello list properties such as name, position, status, and subscription settings using the update-list tool in the Advanced Trello MCP Server for precise project management adjustments.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
closed | No | Whether the list should be closed (archived) | |
listId | Yes | ID of the list to update | |
name | No | New name for the list | |
pos | No | Position of the list | |
subscribed | No | Whether to subscribe to the list |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"closed": {
"description": "Whether the list should be closed (archived)",
"type": "boolean"
},
"listId": {
"description": "ID of the list to update",
"type": "string"
},
"name": {
"description": "New name for the list",
"type": "string"
},
"pos": {
"description": "Position of the list",
"type": [
"number",
"string"
]
},
"subscribed": {
"description": "Whether to subscribe to the list",
"type": "boolean"
}
},
"required": [
"listId"
],
"type": "object"
}