drawio-mcp-server 1.1.1 → 1.1.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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +5 -2
package/README.md CHANGED
@@ -26,7 +26,7 @@ The tool supports bidirectional communication, allowing both control of Draw.io
26
26
  To use the Draw.io MCP server, you'll need:
27
27
 
28
28
  ### Core Components
29
- - **Node.js** (v18 or higher) - Runtime environment for the MCP server
29
+ - **Node.js** (v20 or higher) - Runtime environment for the MCP server
30
30
  - **Draw.io MCP Browser Extension** - Enables communication between Draw.io and the MCP server
31
31
 
32
32
  ### MCP Ecosystem
package/package.json CHANGED
@@ -1,12 +1,15 @@
1
1
  {
2
2
  "name": "drawio-mcp-server",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "Provides Draw.io services to MCP Clients",
5
5
  "type": "module",
6
6
  "main": "index.js",
7
7
  "bin": {
8
8
  "drawio-mcp-server": "./build/index.js"
9
9
  },
10
+ "engines": {
11
+ "node": ">=20.0.0"
12
+ },
10
13
  "files": [
11
14
  "build"
12
15
  ],
@@ -28,7 +31,7 @@
28
31
  "nanoid": "5.1.5",
29
32
  "pino": "9.6.0",
30
33
  "pino-pretty": "13.0.0",
31
- "uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.51.0",
34
+ "uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.52.0",
32
35
  "zod": "3.24.3"
33
36
  },
34
37
  "devDependencies": {