Paperless-ngx
Paperless-ngx document management: full-text search over scanned documents, correspondents, document types, tags, storage paths and the OCR'd content of any document. REST API on your own instance, token auth.
7 天免费 · 无需信用卡 · EU 托管
问 Paperless-ngx 任何事
通过 AnythingMCP 对 Paperless-ngx 试一个真实提示 — Claude 调用工具并返回答案。在你的消息上按 Enter 即可在 Cloud 安装。
在 Cloud 上安装 Paperless-ngxClaude 是 AI,可能会出错。请核对回答。
2 分钟设置
- 1在 cloud.anythingmcp.com 开始免费试用。
- 2在连接器商店点击 Paperless-ngx。提示时粘贴凭据。
- 3生成 MCP API 密钥,将 AI 客户端指向生成的 MCP URL。
配置 Paperless-ngx
直接来自连接器定义:在哪里获取凭据、需要哪些权限,以及该适配器调用的是哪个 API。 由连接器作者以英文提供。
Getting a token
- Sign in to Paperless-ngx, open the user menu → My Profile, and copy the API Auth Token (create one if the field is empty).
- Put it in
PAPERLESS_API_TOKENand your instance's base URL inPAPERLESS_URL— no trailing slash and no/api, e.g.https://paperless.example.com.
The Authorization header is Token …, Django REST Framework's scheme — not Bearer. The adapter sends it correctly.
Search is the point of this connector. paperless_ngx_search_documents passes a query to Paperless's full-text index, which searches the OCR'd content, not just the title. The index supports field terms (correspondent:acme, type:invoice, created:[2026-01-01 TO 2026-06-30]), quoted phrases and wildcards. paperless_ngx_list_documents is the structured alternative when you already know the correspondent or tag ids.
Documents reference everything by id. A document row carries correspondent, document_type and tags as numeric ids; resolve them with the three list tools, or ask for full_perms-style expansion in the UI. Reading content for a document is a separate call because the OCR text can be very large.
Permissions: Paperless-ngx 2.x supports per-document owners and per-object permissions. A token for a restricted user sees a smaller library and reports it as an empty page, not as an error.
Self-hosted, which is the thing to plan for.
- On AnythingMCP Cloud the instance must be reachable from the public internet on a real hostname with a valid TLS certificate. A self-signed certificate will fail: the connector offers no trust-anything switch.
- On an internal host (
paperless.intern,10.0.0.x), self-host AnythingMCP on the same network and add that host toSSRF_ALLOWED_HOSTS, or the outbound guard refuses the call before it is made.
Read-only by design: this adapter exposes no upload or delete. Documents are the audit trail; a wrong write there is not a thing an agent should be able to do by accident.