@hanna84/mcp-writing 2.7.0 → 2.9.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 +20 -0
- package/index.js +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,11 +4,31 @@ 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.9.0](https://github.com/hannasdev/mcp-writing.git
|
|
8
|
+
/compare/v2.8.0...v2.9.0)
|
|
9
|
+
|
|
10
|
+
- feat(get_runtime_config): include server_version in response [`#92`](https://github.com/hannasdev/mcp-writing.git
|
|
11
|
+
/pull/92)
|
|
12
|
+
|
|
13
|
+
#### [v2.8.0](https://github.com/hannasdev/mcp-writing.git
|
|
14
|
+
/compare/v2.7.0...v2.8.0)
|
|
15
|
+
|
|
16
|
+
> 26 April 2026
|
|
17
|
+
|
|
18
|
+
- feat(get_runtime_config): include server_version in response [`#91`](https://github.com/hannasdev/mcp-writing.git
|
|
19
|
+
/pull/91)
|
|
20
|
+
- Release 2.8.0 [`917dc4e`](https://github.com/hannasdev/mcp-writing.git
|
|
21
|
+
/commit/917dc4e6dcfd3308e9e93f12e8c7d637ff6fb8b9)
|
|
22
|
+
|
|
7
23
|
#### [v2.7.0](https://github.com/hannasdev/mcp-writing.git
|
|
8
24
|
/compare/v2.6.0...v2.7.0)
|
|
9
25
|
|
|
26
|
+
> 26 April 2026
|
|
27
|
+
|
|
10
28
|
- feat(workflows): add describe_workflows entry-point tool [`#90`](https://github.com/hannasdev/mcp-writing.git
|
|
11
29
|
/pull/90)
|
|
30
|
+
- Release 2.7.0 [`ceb70b2`](https://github.com/hannasdev/mcp-writing.git
|
|
31
|
+
/commit/ceb70b24a955ba954977806b57e0770b3b6d53e0)
|
|
12
32
|
|
|
13
33
|
#### [v2.6.0](https://github.com/hannasdev/mcp-writing.git
|
|
14
34
|
/compare/v2.5.1...v2.6.0)
|
package/index.js
CHANGED
|
@@ -1521,10 +1521,11 @@ function createMcpServer() {
|
|
|
1521
1521
|
// ---- get_runtime_config --------------------------------------------------
|
|
1522
1522
|
s.tool(
|
|
1523
1523
|
"get_runtime_config",
|
|
1524
|
-
"Show the active runtime paths and capabilities for this server instance (sync dir, database path, writability, permission diagnostics, and git availability). Use this to verify which manuscript location is currently connected.",
|
|
1524
|
+
"Show the active runtime paths and capabilities for this server instance (server version, sync dir, database path, writability, permission diagnostics, and git availability). Use this to verify which manuscript location is currently connected.",
|
|
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,
|