mcp_kanban_comment_manager
Perform operations on card comments, including retrieving, creating, updating, and deleting, for effective task management on Planka Kanban boards.
Instructions
Manage card comments with various operations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | The action to perform | |
cardId | No | The ID of the card | |
id | No | The ID of the comment | |
text | No | The text content of the comment |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"action": {
"description": "The action to perform",
"enum": [
"get_all",
"create",
"get_one",
"update",
"delete"
],
"type": "string"
},
"cardId": {
"description": "The ID of the card",
"type": "string"
},
"id": {
"description": "The ID of the comment",
"type": "string"
},
"text": {
"description": "The text content of the comment",
"type": "string"
}
},
"required": [
"action"
],
"type": "object"
}