Nurama Developers

create_tag

Mint a new tag on a workspace or project.

Mutating tool: it changes data in Nurama. Available only when the key carries the matching scope.

Mint a new tag on a workspace or project. Tags are owned by exactly one resource and visible everywhere it cascades down to. Use BEFORE tag_task / tag_asset / tag_folder / tag_board if list_tags shows the desired tag does not yet exist. A color is assigned automatically when omitted.

Input

PropertyTypeRequiredDescription
namestringyesThe tag name (e.g. urgent, q3-launch). min length 1
ownerResourceType"workspace" | "project"yesThe resource that owns this tag — usually project.
ownerResourceIdstringyesUUID of the owning resource.
colorstringnoOptional hex color (e.g. #FF6B35). Auto-assigned if omitted.

JSON Schema

{
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "minLength": 1,
      "description": "The tag name (e.g. `urgent`, `q3-launch`)."
    },
    "ownerResourceType": {
      "type": "string",
      "enum": [
        "workspace",
        "project"
      ],
      "description": "The resource that owns this tag — usually `project`."
    },
    "ownerResourceId": {
      "type": "string",
      "description": "UUID of the owning resource."
    },
    "color": {
      "type": "string",
      "description": "Optional hex color (e.g. `#FF6B35`). Auto-assigned if omitted."
    }
  },
  "required": [
    "name",
    "ownerResourceType",
    "ownerResourceId"
  ],
  "additionalProperties": false
}

On this page