Manages tags on a task. Actions: "add" (attach tags without removing existing), "remove" (detach specific tags), "set" (replace all tags). Provide tag_names or tag_ids. Requires owner, admin, or member role.
Safety: Write
Tool names, field names, and schema descriptions remain in canonical MCP English so copied calls match the server exactly.
Input schema
| Field | Type | Required | Description |
|---|---|---|---|
task_id |
integer | no | The task ID. |
search |
string | no | Search by task name, description, or "#number". |
action |
string | yes | The action to perform: "add" (attach tags), "remove" (detach tags), or "set" (replace all tags). |
tag_names |
array | no | Tag names to add/remove/set (e.g., ["Bug", "Feature"]). |
tag_ids |
array | no | Tag IDs to add/remove/set (optional if tag_names is provided). |
Example prompt
Use manage-task-tags-tool to help me with the relevant Taskavel task.
Example call
{
"name": "manage-task-tags-tool",
"arguments": {}
}