@masonator/coolify-mcp 1.1.0 → 1.1.1

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.
@@ -20,7 +20,7 @@
20
20
  import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
21
21
  import { z } from 'zod';
22
22
  import { CoolifyClient, } from './coolify-client.js';
23
- const VERSION = '1.1.0';
23
+ const VERSION = '1.1.1';
24
24
  /** Wrap tool handler with consistent error handling */
25
25
  function wrapHandler(fn) {
26
26
  return fn()
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@masonator/coolify-mcp",
3
3
  "scope": "@masonator",
4
- "version": "1.1.0",
4
+ "version": "1.1.1",
5
5
  "description": "MCP server implementation for Coolify",
6
6
  "type": "module",
7
7
  "main": "./dist/index.js",
@@ -25,8 +25,8 @@
25
25
  "test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch --testPathIgnorePatterns=integration",
26
26
  "test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage --testPathIgnorePatterns=integration",
27
27
  "test:integration": "NODE_OPTIONS=--experimental-vm-modules jest --testPathPattern=integration --testTimeout=60000",
28
- "lint": "eslint . --ext .ts",
29
- "lint:fix": "eslint . --ext .ts --fix",
28
+ "lint": "eslint .",
29
+ "lint:fix": "eslint . --fix",
30
30
  "format": "prettier --write .",
31
31
  "format:check": "prettier --check .",
32
32
  "prepare": "husky",
@@ -46,24 +46,26 @@
46
46
  },
47
47
  "dependencies": {
48
48
  "@modelcontextprotocol/sdk": "^1.6.1",
49
- "zod": "^3.24.2"
49
+ "zod": "^4.3.5"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@types/jest": "^29.5.14",
53
- "@types/node": "^20.17.23",
54
- "@typescript-eslint/eslint-plugin": "^7.18.0",
55
- "@typescript-eslint/parser": "^7.18.0",
56
- "dotenv": "^16.4.5",
57
- "eslint": "^8.56.0",
58
- "eslint-config-prettier": "^9.1.0",
53
+ "@types/node": "^25.0.3",
54
+ "@typescript-eslint/eslint-plugin": "^8.51.0",
55
+ "@typescript-eslint/parser": "^8.51.0",
56
+ "dotenv": "^17.2.3",
57
+ "eslint": "^9.39.2",
58
+ "eslint-config-prettier": "^10.1.8",
59
+ "globals": "^17.0.0",
59
60
  "husky": "^9.0.11",
60
61
  "jest": "^29.7.0",
61
- "lint-staged": "^15.2.2",
62
+ "lint-staged": "^16.2.7",
62
63
  "markdownlint-cli2": "^0.20.0",
63
64
  "prettier": "^3.5.3",
64
- "shx": "^0.3.4",
65
+ "shx": "^0.4.0",
65
66
  "ts-jest": "^29.2.6",
66
- "typescript": "^5.8.2"
67
+ "typescript": "^5.8.2",
68
+ "typescript-eslint": "^8.51.0"
67
69
  },
68
70
  "engines": {
69
71
  "node": ">=18"