-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) Β· 1.6 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) Β· 1.6 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
55
56
{
"name": "fs-mcp",
"version": "1.1.0",
"description": "Production-ready Model Context Protocol (MCP) server providing Claude with complete file system integration including directory management, file operations, Office document creation/editing, and advanced file tree visualization. Pre-built executables available for macOS, Windows, and Linux for easy end-user installation without Node.js dependencies.",
"main": "src/server.js",
"keywords": [
"model-context-protocol",
"mcp-server",
"file-system",
"file-operations",
"directory-management",
"excel",
"powerpoint",
"word-documents",
"document-creation",
"file-tree",
"office-automation",
"file-manipulation",
"ai-assistant",
"claude-ai",
"claude-llm",
"llm-integration",
"nodejs",
"typescript"
],
"author": "Padmanabha Das",
"license": "MIT",
"scripts": {
"dev": "ts-node src/server.ts",
"build": "tsc",
"bundle": "ncc build dist/server.js -o build",
"package": "ts-node src/scripts/package-script.ts"
},
"dependencies": {
"@types/cors": "^2.8.19",
"@types/yauzl": "^2.10.3",
"cors": "^2.8.5",
"docx": "^9.5.1",
"exceljs": "^4.4.0",
"express": "^5.1.0",
"mammoth": "^1.9.1",
"mcp-utils": "github:pdas9647/MCP-Utils#master",
"pptxgenjs": "^4.0.1",
"xlsx": "^0.18.5",
"yauzl": "^3.2.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@modelcontextprotocol/sdk": "^1.18.0",
"@types/express": "^5.0.3",
"@vercel/ncc": "^0.38.3",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
}
}