@hanna84/mcp-writing 3.4.0 → 3.4.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/CHANGELOG.md +443 -857
- package/README.md +1 -1
- package/package.json +15 -7
- package/src/tools/styleguide.js +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# mcp-writing
|
|
2
2
|
|
|
3
|
-
[](https://github.com/hannasdev/mcp-writing/actions/workflows/ci.yml) [](https://github.com/hannasdev/mcp-writing/releases) [](https://www.npmjs.com/package/@hanna84/mcp-writing) [](https://www.npmjs.com/package/@hanna84/mcp-writing) [](https://github.com/hannasdev/mcp-writing/actions/workflows/ci.yml) [](https://github.com/hannasdev/mcp-writing/releases) [](https://www.npmjs.com/package/@hanna84/mcp-writing) [](https://www.npmjs.com/package/@hanna84/mcp-writing) [](https://nodejs.org/) [](https://www.gnu.org/licenses/agpl-3.0)
|
|
4
4
|
|
|
5
5
|
An MCP service for AI-assisted reasoning and editing on long-form fiction projects.
|
|
6
6
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hanna84/mcp-writing",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.2",
|
|
4
4
|
"description": "MCP service for AI-assisted reasoning and editing on long-form fiction projects",
|
|
5
5
|
"homepage": "https://hannasdev.github.io/mcp-writing/",
|
|
6
6
|
"type": "module",
|
|
@@ -87,6 +87,9 @@
|
|
|
87
87
|
"scrivener"
|
|
88
88
|
],
|
|
89
89
|
"license": "AGPL-3.0-only",
|
|
90
|
+
"engines": {
|
|
91
|
+
"node": ">=22.13.0"
|
|
92
|
+
},
|
|
90
93
|
"repository": {
|
|
91
94
|
"type": "git",
|
|
92
95
|
"url": "https://github.com/hannasdev/mcp-writing"
|
|
@@ -96,14 +99,19 @@
|
|
|
96
99
|
"@xmldom/xmldom": "^0.9.10",
|
|
97
100
|
"gray-matter": "^4.0.3",
|
|
98
101
|
"js-yaml": "^4.1.1",
|
|
99
|
-
"pdfkit": "^0.
|
|
100
|
-
"zod": "^4.3
|
|
102
|
+
"pdfkit": "^0.18.0",
|
|
103
|
+
"zod": "^4.4.3"
|
|
101
104
|
},
|
|
102
105
|
"devDependencies": {
|
|
103
106
|
"@eslint/js": "^10.0.1",
|
|
104
|
-
"auto-changelog": "^2.5.
|
|
105
|
-
"eslint": "^10.
|
|
106
|
-
"globals": "^17.
|
|
107
|
-
"release-it": "^20.0.
|
|
107
|
+
"auto-changelog": "^2.5.1",
|
|
108
|
+
"eslint": "^10.3.0",
|
|
109
|
+
"globals": "^17.6.0",
|
|
110
|
+
"release-it": "^20.0.1"
|
|
111
|
+
},
|
|
112
|
+
"overrides": {
|
|
113
|
+
"hono": "4.12.18",
|
|
114
|
+
"express-rate-limit": "8.5.1",
|
|
115
|
+
"ip-address": "10.2.0"
|
|
108
116
|
}
|
|
109
117
|
}
|
package/src/tools/styleguide.js
CHANGED
|
@@ -251,7 +251,7 @@ export function registerStyleguideTools(s, {
|
|
|
251
251
|
if (fs.existsSync(targetPath) && !overwrite) {
|
|
252
252
|
return errorResponse(
|
|
253
253
|
"STYLEGUIDE_CONFIG_EXISTS",
|
|
254
|
-
"
|
|
254
|
+
"A prose styleguide config already exists at the target location.",
|
|
255
255
|
{ target_path: path.resolve(targetPath) }
|
|
256
256
|
);
|
|
257
257
|
}
|