@baruchiro/paperless-mcp
Version:
Model Context Protocol (MCP) server for interacting with Paperless-NGX document management system. Enables AI assistants to manage documents, tags, correspondents, and document types through the Paperless-NGX API.
16 lines (15 loc) • 527 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MATCHING_ALGORITHM_DESCRIPTION = exports.MATCHING_ALGORITHM_OPTIONS = void 0;
exports.MATCHING_ALGORITHM_OPTIONS = {
0: "None",
1: "Any word",
2: "All words",
3: "Exact match",
4: "Regular expression",
5: "Fuzzy word",
6: "Automatic",
};
exports.MATCHING_ALGORITHM_DESCRIPTION = `Matching algorithm: ${Object.entries(exports.MATCHING_ALGORITHM_OPTIONS)
.map(([id, name]) => `${id}=${name}`)
.join(", ")}`;