forked from baruchiro/paperless-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.46 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@baruchiro/paperless-mcp",
"version": "0.0.2",
"description": "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.",
"main": "build/index.js",
"bin": {
"paperless-mcp": "build/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node src/index.ts",
"build": "tsc",
"inspect": "npm run build && npx -y @modelcontextprotocol/inspector node build/index.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"paperless-ngx",
"document-management",
"ai",
"claude",
"model-context-protocol",
"paperless"
],
"author": "Baruch Odem",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/baruchiro/paperless-mcp.git"
},
"homepage": "https://github.com/baruchiro/paperless-mcp",
"files": [
"build",
"README.md",
"LICENSE"
],
"bugs": {
"url": "https://github.com/baruchiro/paperless-mcp/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.1",
"axios": "^1.9.0",
"express": "^5.1.0",
"form-data": "^4.0.2",
"typescript": "^5.8.3",
"zod": "^3.24.1"
},
"devDependencies": {
"@changesets/cli": "^2.29.4",
"@types/express": "^5.0.2",
"@types/node": "^22.15.17",
"ts-node": "^10.9.2"
}
}