download_document
Retrieve documents from Paperless-NGX by specifying the document ID and optional original file format using this MCP server tool.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ||
original | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"type": "number"
},
"original": {
"type": "boolean"
}
},
"required": [
"id"
],
"type": "object"
}