@hanna84/mcp-writing 1.13.2 → 1.14.0

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 CHANGED
@@ -4,11 +4,21 @@ All notable changes to this project will be documented in this file. Dates are d
4
4
 
5
5
  Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6
6
 
7
+ #### [v1.14.0](https://github.com/hannasdev/mcp-writing.git
8
+ /compare/v1.13.2...v1.14.0)
9
+
10
+ - feat(scrivener-direct): graduate from beta to stable [`#72`](https://github.com/hannasdev/mcp-writing.git
11
+ /pull/72)
12
+
7
13
  #### [v1.13.2](https://github.com/hannasdev/mcp-writing.git
8
14
  /compare/v1.13.1...v1.13.2)
9
15
 
16
+ > 24 April 2026
17
+
10
18
  - fix(scrivener-direct): add Phase E data safety hardening [`#71`](https://github.com/hannasdev/mcp-writing.git
11
19
  /pull/71)
20
+ - Release 1.13.2 [`8b98c80`](https://github.com/hannasdev/mcp-writing.git
21
+ /commit/8b98c80e27446d41f42c88217253ab5d30b065f2)
12
22
 
13
23
  #### [v1.13.1](https://github.com/hannasdev/mcp-writing.git
14
24
  /compare/v1.13.0...v1.13.1)
package/index.js CHANGED
@@ -980,7 +980,7 @@ function createMcpServer() {
980
980
 
981
981
  s.tool(
982
982
  "merge_scrivener_project_beta",
983
- "[BETA] Merge metadata directly from a Scrivener .scriv project into existing scene sidecars by starting a background job. This path is opt-in, requires sidecars to already exist (for example, from import_scrivener_sync), and may be sensitive to Scrivener internal format changes. Returns immediately with a job_id to poll via get_async_job_status.",
983
+ "Merge metadata directly from a Scrivener .scriv project into existing scene sidecars by starting a background job. This path is opt-in and requires sidecars to already exist (for example, from import_scrivener_sync). Returns immediately with a job_id to poll via get_async_job_status.",
984
984
  {
985
985
  source_project_dir: z.string().describe("Path to a Scrivener .scriv bundle directory."),
986
986
  project_id: z.string().optional().describe("Project ID containing existing sidecars (e.g. 'the-lamb' or 'universe-1/book-1-the-lamb')."),
@@ -1052,7 +1052,6 @@ function createMcpServer() {
1052
1052
  return jsonResponse({
1053
1053
  ok: true,
1054
1054
  async: true,
1055
- beta: true,
1056
1055
  job: toPublicJob(job, false),
1057
1056
  next_step: "Call get_async_job_status with job_id until status is 'completed' or 'failed'.",
1058
1057
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hanna84/mcp-writing",
3
- "version": "1.13.2",
3
+ "version": "1.14.0",
4
4
  "description": "MCP service for AI-assisted reasoning and editing on long-form fiction projects",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -52,7 +52,6 @@ function normalizeImportResult(importResult) {
52
52
  function normalizeMergeResult(mergeResult) {
53
53
  return {
54
54
  ok: true,
55
- beta: true,
56
55
  merge: {
57
56
  source_project_dir: mergeResult.scrivPath,
58
57
  sync_dir: mergeResult.mcpSyncDir,
@@ -77,10 +76,7 @@ function normalizeMergeResult(mergeResult) {
77
76
  },
78
77
  },
79
78
  sync: null,
80
- warnings: [
81
- "BETA_FEATURE: Direct Scrivener project parsing may be sensitive to Scrivener internal format changes.",
82
- "If this fails, use import_scrivener_sync with an External Folder Sync export as the stable fallback.",
83
- ],
79
+ warnings: [],
84
80
  };
85
81
  }
86
82