@aashari/boilerplate-mcp-server 1.4.0 → 1.4.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [1.4.2](https://github.com/aashari/boilerplate-mcp-server/compare/v1.4.1...v1.4.2) (2025-05-01)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * align ipaddress CLI descriptions with tool/schema ([1eeaeeb](https://github.com/aashari/boilerplate-mcp-server/commit/1eeaeeb8ee4bd425abe135cb4d2717278e7aa617))
7
+
8
+ ## [1.4.1](https://github.com/aashari/boilerplate-mcp-server/compare/v1.4.0...v1.4.1) (2025-04-30)
9
+
10
+
11
+ ### Performance Improvements
12
+
13
+ * Update dependencies ([b0c4046](https://github.com/aashari/boilerplate-mcp-server/commit/b0c4046f29d3ec31a1b9c40734c683065525bf56))
14
+
1
15
  # [1.4.0](https://github.com/aashari/boilerplate-mcp-server/compare/v1.3.5...v1.4.0) (2025-04-30)
2
16
 
3
17
 
@@ -15,19 +15,8 @@ function register(program) {
15
15
  cliLogger.debug(`Registering IP address CLI commands...`);
16
16
  program
17
17
  .command('get-ip-details')
18
- .description(`Get geolocation and network details about an IP address or the current device.
19
-
20
- PURPOSE: Retrieve comprehensive information about an IP address including geographical location, ISP, organization, and network details.
21
-
22
- Use Case: Useful for identifying the location of an IP address, determining network ownership, or checking your own public IP information.
23
-
24
- Output: Formatted Markdown containing location data (country, region, city), network information (ISP, organization, AS number), coordinates, and a link to view the location on a map.
25
-
26
- Examples:
27
- $ mcp-ipaddress get-ip-details
28
- $ mcp-ipaddress get-ip-details 8.8.8.8
29
- $ mcp-ipaddress get-ip-details 1.1.1.1`)
30
- .argument('[ipAddress]', 'IP address to lookup (optional, omit for current device)')
18
+ .description(`Get geolocation and network details about an IP address or the current device.`)
19
+ .argument('[ipAddress]', 'IP address to lookup (omit for current IP)')
31
20
  .option('--extended', 'Include extended data like ASN, mobile and proxy detection')
32
21
  .option('--https', 'Use HTTPS for API requests (may require paid API key)')
33
22
  .action(async (ipAddress, cmdOptions) => {
@@ -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.4.0";
11
+ export declare const VERSION = "1.4.2";
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.4.0';
14
+ exports.VERSION = '1.4.2';
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.4.0",
3
+ "version": "1.4.2",
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",
@@ -57,31 +57,31 @@
57
57
  "@semantic-release/changelog": "^6.0.3",
58
58
  "@semantic-release/exec": "^7.0.3",
59
59
  "@semantic-release/git": "^10.0.1",
60
- "@semantic-release/github": "^11.0.1",
60
+ "@semantic-release/github": "^11.0.2",
61
61
  "@semantic-release/npm": "^12.0.1",
62
62
  "@types/jest": "^29.5.14",
63
- "@types/node": "^22.14.1",
64
- "@typescript-eslint/eslint-plugin": "^8.31.0",
65
- "@typescript-eslint/parser": "^8.31.0",
63
+ "@types/node": "^22.15.3",
64
+ "@typescript-eslint/eslint-plugin": "^8.31.1",
65
+ "@typescript-eslint/parser": "^8.31.1",
66
66
  "eslint": "^9.25.1",
67
67
  "eslint-config-prettier": "^10.1.2",
68
68
  "eslint-plugin-prettier": "^5.2.6",
69
69
  "jest": "^29.7.0",
70
- "nodemon": "^3.1.9",
71
- "npm-check-updates": "^18.0.0",
70
+ "nodemon": "^3.1.10",
71
+ "npm-check-updates": "^18.0.1",
72
72
  "prettier": "^3.5.3",
73
73
  "semantic-release": "^24.2.3",
74
74
  "ts-jest": "^29.3.2",
75
75
  "ts-node": "^10.9.2",
76
76
  "typescript": "^5.8.3",
77
- "typescript-eslint": "^8.31.0"
77
+ "typescript-eslint": "^8.31.1"
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.10.1",
84
+ "@modelcontextprotocol/sdk": "^1.10.2",
85
85
  "commander": "^13.1.0",
86
86
  "dotenv": "^16.5.0",
87
87
  "zod": "^3.24.3"
package/package.json.bak CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aashari/boilerplate-mcp-server",
3
- "version": "1.3.5",
3
+ "version": "1.4.1",
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",
@@ -57,31 +57,31 @@
57
57
  "@semantic-release/changelog": "^6.0.3",
58
58
  "@semantic-release/exec": "^7.0.3",
59
59
  "@semantic-release/git": "^10.0.1",
60
- "@semantic-release/github": "^11.0.1",
60
+ "@semantic-release/github": "^11.0.2",
61
61
  "@semantic-release/npm": "^12.0.1",
62
62
  "@types/jest": "^29.5.14",
63
- "@types/node": "^22.14.1",
64
- "@typescript-eslint/eslint-plugin": "^8.31.0",
65
- "@typescript-eslint/parser": "^8.31.0",
63
+ "@types/node": "^22.15.3",
64
+ "@typescript-eslint/eslint-plugin": "^8.31.1",
65
+ "@typescript-eslint/parser": "^8.31.1",
66
66
  "eslint": "^9.25.1",
67
67
  "eslint-config-prettier": "^10.1.2",
68
68
  "eslint-plugin-prettier": "^5.2.6",
69
69
  "jest": "^29.7.0",
70
- "nodemon": "^3.1.9",
71
- "npm-check-updates": "^18.0.0",
70
+ "nodemon": "^3.1.10",
71
+ "npm-check-updates": "^18.0.1",
72
72
  "prettier": "^3.5.3",
73
73
  "semantic-release": "^24.2.3",
74
74
  "ts-jest": "^29.3.2",
75
75
  "ts-node": "^10.9.2",
76
76
  "typescript": "^5.8.3",
77
- "typescript-eslint": "^8.31.0"
77
+ "typescript-eslint": "^8.31.1"
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.10.1",
84
+ "@modelcontextprotocol/sdk": "^1.10.2",
85
85
  "commander": "^13.1.0",
86
86
  "dotenv": "^16.5.0",
87
87
  "zod": "^3.24.3"