tag_task
Attach a project-scoped tag to a task.
Mutating tool: it changes data in Nurama. Available only when the key carries the matching scope.
Attach a project-scoped tag to a task. WRITE OPERATION. The tag must already exist in the project; this tool does not create new tags. To see what tags exist, call list_tags for the project first.
Input
| Property | Type | Required | Description |
|---|---|---|---|
taskId | string | yes | UUID of the task to tag. |
tagId | string | yes | UUID of the project-scoped tag to apply. |
JSON Schema
{
"type": "object",
"properties": {
"taskId": {
"type": "string",
"description": "UUID of the task to tag."
},
"tagId": {
"type": "string",
"description": "UUID of the project-scoped tag to apply."
}
},
"required": [
"taskId",
"tagId"
],
"additionalProperties": false
}