Paperless-NGX MCP Server

post_document

Upload a new document to Paperless-NGX

Input Schema

NameRequiredDescriptionDefault
archive_serial_numberNo
correspondentNo
createdNo
custom_fieldsNo
document_typeNo
fileYes
filenameYes
storage_pathNo
tagsNo
titleNo

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "archive_serial_number": { "type": "string" }, "correspondent": { "type": "number" }, "created": { "type": "string" }, "custom_fields": { "items": { "type": "number" }, "type": "array" }, "document_type": { "type": "number" }, "file": { "type": "string" }, "filename": { "type": "string" }, "storage_path": { "type": "number" }, "tags": { "items": { "type": "number" }, "type": "array" }, "title": { "type": "string" } }, "required": [ "file", "filename" ], "type": "object" }