Paperless-NGX MCP Server

by nloui

update_tag

Modify an existing tag in Paperless-NGX by updating properties such as name, color, matching algorithm, or match pattern to improve document organization and searchability.

Instructions

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" }
ID: ng04du3voj