add_list_to_board
Create a new list on a Trello board by specifying the list name. This tool integrates with MCP Server Trello for managing board activities efficiently.
Instructions
Add a new list to the board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Name of the new list |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Name of the new list",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}