Paperless-NGX MCP Server

create_correspondent

Create a new correspondent

Input Schema

NameRequiredDescriptionDefault
matchNo
matching_algorithmNo
nameYes

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "match": { "type": "string" }, "matching_algorithm": { "enum": [ "any", "all", "exact", "regular expression", "fuzzy" ], "type": "string" }, "name": { "type": "string" } }, "required": [ "name" ], "type": "object" }