Back to tools

update_category

Update an existing category by ID.

Schema and Policy
{
  "name": "update_category",
  "description": "Update an existing category by ID.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "id": {
        "type": "string",
        "description": "Category ID"
      },
      "name": {
        "type": "string"
      },
      "description": {
        "type": "string"
      }
    },
    "required": [
      "id"
    ]
  },
  "category": "Categories",
  "authRequired": true,
  "mutability": "write",
  "status": "auth_required"
}