MCP server for Paperless-ngx 3.x β full REST API coverage, schema-aware, token-frugal.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
A Model Context Protocol server for
Paperless-ngx 3.x
Full REST API coverage, schema-aware, token-frugal.
Built against REST API version 10, with three things it does differently:
src/tools/coverage.ts with a written reason for leaving it
out. A test enforces this, so a Paperless release that adds an endpoint fails CI instead of
quietly going unsupported.?fields=, the text lives behind its own paginated tool, and no list endpoint
hands the raw API response through β a test enforces that. See Context cost.--read-only removes every write path entirely.Paperless-ngx 2.x is not supported: API version 10 introduced endpoints (nested tags, document
versions, share_link_bundles, the split PDF operations) that this server assumes exist.
Paperless web UI β your username (top right) β My Profile β the circular arrow button next to the API token field.
| Variable | Required | Default | Purpose |
|---|---|---|---|
PAPERLESS_URL | yes | β | Base URL the server talks to. |
PAPERLESS_TOKEN | yes | β | API token. PAPERLESS_API_KEY also works. |
PAPERLESS_PUBLIC_URL | no | PAPERLESS_URL | URL used when building links for the user, if the instance is reachable under a different name from outside. |
PAPERLESS_TOOLSETS | no | see below | Comma-separated toolsets, or all. |
PAPERLESS_READ_ONLY | no | false | Expose only tools that cannot change anything. |
PAPERLESS_HEADERS | no | β | Extra request headers, as JSON ({"X-Auth":"β¦"}) or Name: value, Name: value. Needed behind forward-auth proxies such as Authentik or Authelia. |
PAPERLESS_DOWNLOAD_DIR | no | system temp | Where downloaded files are written. |
PAPERLESS_MAX_PAGE_SIZE | no | 100 | Hard ceiling on list page sizes, whatever the model asks for. |
PAPERLESS_TIMEOUT_MS | no | 60000 | Request timeout. |
PAPERLESS_API_VERSION | no | 10 | REST API version sent in the Accept header. |
CLI flags --url, --token, --public-url, --toolsets and --read-only override the
environment. --check verifies connectivity, --list-tools prints the enabled tools.
| Toolset | Default | Contents |
|---|---|---|
documents | on | Search, read, update, delete, upload, download, notes, bulk and PDF operations |
metadata | on | Tags, correspondents, document types, storage paths |
customfields | on | Custom field definitions |
views | on | Saved views |
sharing | on | Share links and share link bundles |
workflows | on | Automation rules, triggers, actions |
system | on | Global search, statistics, status, tasks, trash |
mail | off | IMAP accounts, mail rules, processed mail |
admin | off | Users, groups, profile, configuration, logs (read-only) |
mail and admin are off by default because most sessions never need them and every extra tool
costs context on every request. Enable them explicitly:
Wrapping an API for a language model has a cost the API itself does not: everything the model sees is paid for on every request. Two places where that bites, and what this server does about them.
Responses. Three shapes are expensive in Paperless and easy to return by accident:
| Source | Problem | Handling |
|---|---|---|
| Document lists | Every document carries its full OCR text in content | ?fields= restricts the response server-side; get_document_content paginates the text separately |
/api/search/ | Returns hydrated Document objects, OCR text included, across all object types | Documents are summarised, other types reduced to id + name |
| Workflows, mail rules, groups, tasks | 27β34 fields per object, nested trigger/action definitions inline | Summarised to identifying fields; nested lists collapse to counts. full: true returns everything |
Tool definitions. These are the larger and less obvious cost: names, descriptions and JSON schemas ship with every request, whether or not any tool is called.
| Toolsets | Tools | Approximate cost per request |
|---|---|---|
all | 99 | ~20,500 tokens |
| default | 85 | ~18,500 tokens |
documents,metadata | 49 | ~12,900 tokens |
There is no way to make that free β it is the price of a tool the model can use without guessing.
But it is worth being deliberate: if your sessions only ever search and file documents, running
PAPERLESS_TOOLSETS=documents,metadata saves more context than any response-trimming does.
The server exposes destructive operations, because a document manager without them is not much of a manager. It does not try to guess when they are appropriate β that judgment belongs to the client and the user. What it does instead:
destructiveHint: true, so MCP clients can require confirmation.empty_trash, delete_custom_field,
delete_originals) and ask for confirmation before the call.--read-only removes every write tool from the list, rather than refusing them at call time.create_share_link produces a publicly reachable URL. Its description says so, and the
audit_sharing prompt exists to review what is already exposed.Credential-adjacent endpoints (token generation, TOTP enrolment, disabling someone's second factor)
are deliberately not exposed. See EXCLUDED_ENDPOINTS for the full list and the reasoning.
Registered as slash commands in clients that support MCP prompts:
| Prompt | What it does |
|---|---|
triage_inbox | Walks untriaged documents, proposes metadata preferring existing entries, applies nothing until the user approves. |
find_document | Locates a document from a vague description, searching cheaply before searching broadly. |
audit_sharing | Reviews every public share link and flags the ones that never expire. |
Three layers, because they catch different things:
npm test checks this server's own reasoning: endpoint coverage, enum values
against the schema, that no list tool leaks raw API objects, that read-only mode
really removes writes.
smoke-test.mjs checks the assumptions it makes about Paperless. It calls every
read-only tool against a real instance, resolving IDs from list calls instead of
hard-coding them, and prints response sizes so expensive tools stay visible. It
writes nothing.
write-test.mjs covers the rest: upload and consumption, updating every field
type, notes, bulk tag edits, share links, rotation, and a trash round trip.
It only touches objects it creates itself. Everything it makes is named with a
zz-mcp-testprefix and deleted again at the end, and it never modifies a document it did not upload. If a run is interrupted, leftovers with that prefix are safe to delete. Prefer a test instance if you have one.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/paperless-ngx)<a href="https://allmcps.com/mcp/paperless-ngx"><img src="https://allmcps.com/api/badge/paperless-ngx?style=directory" alt="Paperless Ngx on AllMCPs" /></a>