delete-action
Remove specific actions from Trello using their unique IDs. This tool ensures precise deletion of actions, enhancing project management efficiency in the Advanced Trello MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
actionId | Yes | ID of the action to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"actionId": {
"description": "ID of the action to delete",
"type": "string"
}
},
"required": [
"actionId"
],
"type": "object"
}