mcp-docs-service 0.2.15 → 0.2.16

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
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to the MCP Docs Service will be documented in this file.
4
4
 
5
+ ## [0.2.16] - 2024-05-16
6
+
7
+ ### Fixed
8
+
9
+ - Fixed critical bug in error logging function that was causing crashes
10
+ - Improved error handling in wrapper scripts
11
+
5
12
  ## [0.2.15] - 2024-05-16
6
13
 
7
14
  ### Added
package/dist/index.js CHANGED
@@ -28,7 +28,6 @@ const log = (...args) => {
28
28
  };
29
29
 
30
30
  const errorLog = (...args) => {
31
- a;
32
31
  console.error(...args);
33
32
  };
34
33
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-docs-service",
3
- "version": "0.2.15",
3
+ "version": "0.2.16",
4
4
  "description": "MCP Documentation Management Service - A Model Context Protocol implementation for documentation management",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",