@hanna84/mcp-writing 2.7.0 → 2.8.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/index.js +1 -0
  3. package/package.json +1 -1
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
+ #### [v2.8.0](https://github.com/hannasdev/mcp-writing.git
8
+ /compare/v2.7.0...v2.8.0)
9
+
10
+ - feat(get_runtime_config): include server_version in response [`#91`](https://github.com/hannasdev/mcp-writing.git
11
+ /pull/91)
12
+
7
13
  #### [v2.7.0](https://github.com/hannasdev/mcp-writing.git
8
14
  /compare/v2.6.0...v2.7.0)
9
15
 
16
+ > 26 April 2026
17
+
10
18
  - feat(workflows): add describe_workflows entry-point tool [`#90`](https://github.com/hannasdev/mcp-writing.git
11
19
  /pull/90)
20
+ - Release 2.7.0 [`ceb70b2`](https://github.com/hannasdev/mcp-writing.git
21
+ /commit/ceb70b24a955ba954977806b57e0770b3b6d53e0)
12
22
 
13
23
  #### [v2.6.0](https://github.com/hannasdev/mcp-writing.git
14
24
  /compare/v2.5.1...v2.6.0)
package/index.js CHANGED
@@ -1525,6 +1525,7 @@ function createMcpServer() {
1525
1525
  {},
1526
1526
  async () => {
1527
1527
  return jsonResponse({
1528
+ server_version: MCP_SERVER_VERSION,
1528
1529
  sync_dir: SYNC_DIR_ABS,
1529
1530
  db_path: DB_PATH_DISPLAY,
1530
1531
  sync_dir_writable: SYNC_DIR_WRITABLE,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hanna84/mcp-writing",
3
- "version": "2.7.0",
3
+ "version": "2.8.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",