Paperless-NGX MCP Server

update_tag

Update an existing tag

Input Schema

NameRequiredDescriptionDefault
colorNo
idYes
matchNo
matching_algorithmNo
nameYes

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "color": { "pattern": "^#[0-9A-Fa-f]{6}$", "type": "string" }, "id": { "type": "number" }, "match": { "type": "string" }, "matching_algorithm": { "maximum": 4, "minimum": 0, "type": "integer" }, "name": { "type": "string" } }, "required": [ "id", "name" ], "type": "object" }