-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.63 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.63 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "wordex-mcp",
"version": "2.0.1",
"description": "WordEX — A fully local MCP server for reading, writing, and editing Word (.docx), Excel (.xlsx), PDF, and PowerPoint (.pptx) files from GitHub Copilot and any MCP-compatible AI. 20 tools. Zero data leaves your machine.",
"keywords": [
"mcp",
"model-context-protocol",
"github-copilot",
"claude",
"cursor",
"copilot",
"docx",
"xlsx",
"pdf",
"pptx",
"word",
"excel",
"powerpoint",
"ocr",
"tesseract",
"document",
"documentation",
"local",
"offline",
"privacy",
"developer-tools",
"wordex",
"ai-tools"
],
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"bin": {
"wordex-mcp": "dist/cli.js"
},
"files": [
"dist/",
"logo.svg",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.1",
"docx": "^9.5.0",
"exceljs": "^4.4.0",
"jszip": "^3.10.1",
"mammoth": "^1.8.0",
"pdf-parse": "^1.1.1",
"simple-git": "^3.27.0",
"tesseract.js": "^5.1.0",
"turndown": "^7.2.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Sahith59/WordEX-MCP.git"
},
"homepage": "https://github.com/Sahith59/WordEX-MCP#readme",
"overrides": {
"brace-expansion": "^2.0.1"
}
}