@usejunior/docx-mcp 0.8.0 → 0.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/package.json +26 -5
package/README.md
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
[](https://github.com/UseJunior/safe-docx/actions/workflows/ci.yml)
|
|
5
5
|
[](https://github.com/UseJunior/safe-docx/blob/main/LICENSE)
|
|
6
6
|
|
|
7
|
+
**Install via the canonical package:** `npx -y @usejunior/safe-docx` — [see setup guide](../../README.md)
|
|
8
|
+
|
|
7
9
|
Local MCP server for surgical editing of existing Microsoft Word `.docx` files with coding agents.
|
|
8
10
|
|
|
9
11
|
Safe Docx is built for brownfield paperwork workflows: apply accepted AI edits to real Word documents while preserving formatting and review semantics.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@usejunior/docx-mcp",
|
|
3
|
-
"version": "0.8.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.8.2",
|
|
4
|
+
"description": "MCP server for reading, editing, and comparing Word documents with tracked changes. For Claude, Gemini CLI, Cursor, and any MCP client. MIT licensed.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"lint": "tsc -b --pretty false"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@usejunior/docx-core": "^0.8.
|
|
29
|
+
"@usejunior/docx-core": "^0.8.2",
|
|
30
30
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
31
31
|
"zod": "^4.3.6"
|
|
32
32
|
},
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"dist"
|
|
54
54
|
],
|
|
55
55
|
"peerDependencies": {
|
|
56
|
-
"@usejunior/google-docs-core": "^0.8.
|
|
56
|
+
"@usejunior/google-docs-core": "^0.8.2"
|
|
57
57
|
},
|
|
58
58
|
"peerDependenciesMeta": {
|
|
59
59
|
"@usejunior/google-docs-core": {
|
|
@@ -77,7 +77,28 @@
|
|
|
77
77
|
"serverless",
|
|
78
78
|
"cloudflare-workers",
|
|
79
79
|
"edge",
|
|
80
|
-
"vercel"
|
|
80
|
+
"vercel",
|
|
81
|
+
"microsoft-word",
|
|
82
|
+
"contract-review",
|
|
83
|
+
"legal-tech",
|
|
84
|
+
"document-automation",
|
|
85
|
+
"coding-agent",
|
|
86
|
+
"claude-code",
|
|
87
|
+
"cursor",
|
|
88
|
+
"windsurf",
|
|
89
|
+
"redline",
|
|
90
|
+
"redlining",
|
|
91
|
+
"contract",
|
|
92
|
+
"legal",
|
|
93
|
+
"markup",
|
|
94
|
+
"mark-up",
|
|
95
|
+
"word-editing",
|
|
96
|
+
"word-document",
|
|
97
|
+
"ai-agent",
|
|
98
|
+
"local-first",
|
|
99
|
+
"offline",
|
|
100
|
+
"diff",
|
|
101
|
+
"safedocx"
|
|
81
102
|
],
|
|
82
103
|
"homepage": "https://github.com/UseJunior/safe-docx/tree/main/packages/docx-mcp",
|
|
83
104
|
"bugs": {
|