@aashari/boilerplate-mcp-server 1.10.3 → 1.10.5

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
@@ -1,3 +1,17 @@
1
+ ## [1.10.5](https://github.com/aashari/boilerplate-mcp-server/compare/v1.10.4...v1.10.5) (2025-06-02)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * replace Unix-specific chmod with cross-platform ensure-executable script ([6733798](https://github.com/aashari/boilerplate-mcp-server/commit/6733798669eead4766627193d5ef9f1f0cf1582a))
7
+
8
+ ## [1.10.4](https://github.com/aashari/boilerplate-mcp-server/compare/v1.10.3...v1.10.4) (2025-06-02)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * update dependencies ([374094d](https://github.com/aashari/boilerplate-mcp-server/commit/374094d252c5fe008ac09421b303cdc08837872e))
14
+
1
15
  ## [1.10.3](https://github.com/aashari/boilerplate-mcp-server/compare/v1.10.2...v1.10.3) (2025-05-21)
2
16
 
3
17
 
@@ -8,7 +8,7 @@
8
8
  * Current application version
9
9
  * This should match the version in package.json
10
10
  */
11
- export declare const VERSION = "1.10.3";
11
+ export declare const VERSION = "1.10.5";
12
12
  /**
13
13
  * Package name with scope
14
14
  * Used for initialization and identification
@@ -11,7 +11,7 @@ exports.CLI_NAME = exports.PACKAGE_NAME = exports.VERSION = void 0;
11
11
  * Current application version
12
12
  * This should match the version in package.json
13
13
  */
14
- exports.VERSION = '1.10.3';
14
+ exports.VERSION = '1.10.5';
15
15
  /**
16
16
  * Package name with scope
17
17
  * Used for initialization and identification
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aashari/boilerplate-mcp-server",
3
- "version": "1.10.3",
3
+ "version": "1.10.5",
4
4
  "description": "TypeScript Model Context Protocol (MCP) server boilerplate providing IP lookup tools/resources. Includes CLI support and extensible structure for connecting AI systems (LLMs) to external data sources like ip-api.com. Ideal template for creating new MCP integrations via Node.js.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -15,8 +15,8 @@
15
15
  },
16
16
  "scripts": {
17
17
  "build": "tsc",
18
- "prepare": "npm run build && chmod +x dist/index.js",
19
- "postinstall": "chmod +x dist/index.js || true",
18
+ "prepare": "npm run build && node scripts/ensure-executable.js",
19
+ "postinstall": "node scripts/ensure-executable.js",
20
20
  "test": "jest",
21
21
  "test:coverage": "jest --coverage",
22
22
  "lint": "eslint src --ext .ts --config eslint.config.mjs",
@@ -53,38 +53,38 @@
53
53
  "author": "",
54
54
  "license": "ISC",
55
55
  "devDependencies": {
56
- "@eslint/js": "^9.27.0",
56
+ "@eslint/js": "^9.28.0",
57
57
  "@semantic-release/changelog": "^6.0.3",
58
58
  "@semantic-release/exec": "^7.1.0",
59
59
  "@semantic-release/git": "^10.0.1",
60
- "@semantic-release/github": "^11.0.2",
60
+ "@semantic-release/github": "^11.0.3",
61
61
  "@semantic-release/npm": "^12.0.1",
62
62
  "@types/jest": "^29.5.14",
63
- "@types/node": "^22.15.21",
64
- "@typescript-eslint/eslint-plugin": "^8.32.1",
65
- "@typescript-eslint/parser": "^8.32.1",
66
- "eslint": "^9.27.0",
63
+ "@types/node": "^22.15.29",
64
+ "@typescript-eslint/eslint-plugin": "^8.33.0",
65
+ "@typescript-eslint/parser": "^8.33.0",
66
+ "eslint": "^9.28.0",
67
67
  "eslint-config-prettier": "^10.1.5",
68
- "eslint-plugin-prettier": "^5.4.0",
68
+ "eslint-plugin-prettier": "^5.4.1",
69
69
  "jest": "^29.7.0",
70
70
  "nodemon": "^3.1.10",
71
71
  "npm-check-updates": "^18.0.1",
72
72
  "prettier": "^3.5.3",
73
- "semantic-release": "^24.2.4",
73
+ "semantic-release": "^24.2.5",
74
74
  "ts-jest": "^29.3.4",
75
75
  "ts-node": "^10.9.2",
76
76
  "typescript": "^5.8.3",
77
- "typescript-eslint": "^8.32.1"
77
+ "typescript-eslint": "^8.33.0"
78
78
  },
79
79
  "publishConfig": {
80
80
  "registry": "https://registry.npmjs.org/",
81
81
  "access": "public"
82
82
  },
83
83
  "dependencies": {
84
- "@modelcontextprotocol/sdk": "^1.11.4",
84
+ "@modelcontextprotocol/sdk": "^1.12.1",
85
85
  "commander": "^14.0.0",
86
86
  "dotenv": "^16.5.0",
87
- "zod": "^3.25.17"
87
+ "zod": "^3.25.47"
88
88
  },
89
89
  "directories": {
90
90
  "example": "examples"
package/package.json.bak CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aashari/boilerplate-mcp-server",
3
- "version": "1.10.2",
3
+ "version": "1.10.4",
4
4
  "description": "TypeScript Model Context Protocol (MCP) server boilerplate providing IP lookup tools/resources. Includes CLI support and extensible structure for connecting AI systems (LLMs) to external data sources like ip-api.com. Ideal template for creating new MCP integrations via Node.js.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -15,8 +15,8 @@
15
15
  },
16
16
  "scripts": {
17
17
  "build": "tsc",
18
- "prepare": "npm run build && chmod +x dist/index.js",
19
- "postinstall": "chmod +x dist/index.js || true",
18
+ "prepare": "npm run build && node scripts/ensure-executable.js",
19
+ "postinstall": "node scripts/ensure-executable.js",
20
20
  "test": "jest",
21
21
  "test:coverage": "jest --coverage",
22
22
  "lint": "eslint src --ext .ts --config eslint.config.mjs",
@@ -53,38 +53,38 @@
53
53
  "author": "",
54
54
  "license": "ISC",
55
55
  "devDependencies": {
56
- "@eslint/js": "^9.27.0",
56
+ "@eslint/js": "^9.28.0",
57
57
  "@semantic-release/changelog": "^6.0.3",
58
58
  "@semantic-release/exec": "^7.1.0",
59
59
  "@semantic-release/git": "^10.0.1",
60
- "@semantic-release/github": "^11.0.2",
60
+ "@semantic-release/github": "^11.0.3",
61
61
  "@semantic-release/npm": "^12.0.1",
62
62
  "@types/jest": "^29.5.14",
63
- "@types/node": "^22.15.21",
64
- "@typescript-eslint/eslint-plugin": "^8.32.1",
65
- "@typescript-eslint/parser": "^8.32.1",
66
- "eslint": "^9.27.0",
63
+ "@types/node": "^22.15.29",
64
+ "@typescript-eslint/eslint-plugin": "^8.33.0",
65
+ "@typescript-eslint/parser": "^8.33.0",
66
+ "eslint": "^9.28.0",
67
67
  "eslint-config-prettier": "^10.1.5",
68
- "eslint-plugin-prettier": "^5.4.0",
68
+ "eslint-plugin-prettier": "^5.4.1",
69
69
  "jest": "^29.7.0",
70
70
  "nodemon": "^3.1.10",
71
71
  "npm-check-updates": "^18.0.1",
72
72
  "prettier": "^3.5.3",
73
- "semantic-release": "^24.2.4",
73
+ "semantic-release": "^24.2.5",
74
74
  "ts-jest": "^29.3.4",
75
75
  "ts-node": "^10.9.2",
76
76
  "typescript": "^5.8.3",
77
- "typescript-eslint": "^8.32.1"
77
+ "typescript-eslint": "^8.33.0"
78
78
  },
79
79
  "publishConfig": {
80
80
  "registry": "https://registry.npmjs.org/",
81
81
  "access": "public"
82
82
  },
83
83
  "dependencies": {
84
- "@modelcontextprotocol/sdk": "^1.11.4",
84
+ "@modelcontextprotocol/sdk": "^1.12.1",
85
85
  "commander": "^14.0.0",
86
86
  "dotenv": "^16.5.0",
87
- "zod": "^3.25.17"
87
+ "zod": "^3.25.47"
88
88
  },
89
89
  "directories": {
90
90
  "example": "examples"