GitHub

label_write

Perform write operations on repository labels. To set labels on issues, use the 'update_issue' tool.

Remote github

Other tools also called label_write? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Label name - required for all operations"
    },
    "repo": {
      "type": "string",
      "description": "Repository name"
    },
    "color": {
      "type": "string",
      "description": "Label color as 6-character hex code without '#' prefix (e.g., 'f29513'). Required for 'create', optional for 'update'."
    },
    "owner": {
      "type": "string",
      "description": "Repository owner (username or organization name)"
    },
    "method": {
      "enum": [
        "create",
        "update",
        "delete"
      ],
      "type": "string",
      "description": "Operation to perform: 'create', 'update', or 'delete'"
    },
    "new_name": {
      "type": "string",
      "description": "New name for the label (used only with 'update' method to rename)"
    },
    "description": {
      "type": "string",
      "description": "Label description text. Optional for 'create' and 'update'."
    }
  }
}
          

Provider

GitHub →