Paperless-NGX MCP Server

create_tag

Create a new tag

Input Schema

NameRequiredDescriptionDefault
colorNo
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" }, "match": { "type": "string" }, "matching_algorithm": { "maximum": 4, "minimum": 0, "type": "integer" }, "name": { "type": "string" } }, "required": [ "name" ], "type": "object" }