@aashari/boilerplate-mcp-server 1.11.3 → 1.12.0
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 +14 -0
- package/dist/index.js +1 -0
- package/dist/services/vendor.ip-api.com.types.d.ts +43 -1
- package/dist/tools/ipaddress.types.d.ts +7 -1
- package/dist/utils/constants.util.d.ts +1 -1
- package/dist/utils/constants.util.js +1 -1
- package/package.json +2 -2
- package/package.json.bak +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [1.12.0](https://github.com/aashari/boilerplate-mcp-server/compare/v1.11.4...v1.12.0) (2025-08-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* add startup logging with package name and version ([cb09d0f](https://github.com/aashari/boilerplate-mcp-server/commit/cb09d0f1fa7ffc252f7c4370553f448e7fbfc44e))
|
|
7
|
+
|
|
8
|
+
## [1.11.4](https://github.com/aashari/boilerplate-mcp-server/compare/v1.11.3...v1.11.4) (2025-08-02)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* revert zod to v3.25.67 for consistency across MCP projects ([6d6ed1c](https://github.com/aashari/boilerplate-mcp-server/commit/6d6ed1ccdac15eb8595fffd4eb14162a998e183c))
|
|
14
|
+
|
|
1
15
|
## [1.11.3](https://github.com/aashari/boilerplate-mcp-server/compare/v1.11.2...v1.11.3) (2025-08-02)
|
|
2
16
|
|
|
3
17
|
|
package/dist/index.js
CHANGED
|
@@ -24,6 +24,7 @@ let transportInstance = null;
|
|
|
24
24
|
* Start the MCP server with the specified transport mode
|
|
25
25
|
*/
|
|
26
26
|
async function startServer(mode = 'stdio') {
|
|
27
|
+
logger.info(`Starting MCP server in ${mode} mode with ${constants_util_js_1.PACKAGE_NAME} v${constants_util_js_1.VERSION}`);
|
|
27
28
|
const serverLogger = logger_util_js_1.Logger.forContext('index.ts', 'startServer');
|
|
28
29
|
// Load configuration
|
|
29
30
|
serverLogger.info('Starting MCP server initialization...');
|
|
@@ -24,7 +24,49 @@ export declare const IPDetailSchema: z.ZodObject<{
|
|
|
24
24
|
mobile: z.ZodOptional<z.ZodBoolean>;
|
|
25
25
|
proxy: z.ZodOptional<z.ZodBoolean>;
|
|
26
26
|
hosting: z.ZodOptional<z.ZodBoolean>;
|
|
27
|
-
}, z.
|
|
27
|
+
}, "strip", z.ZodTypeAny, {
|
|
28
|
+
status: string;
|
|
29
|
+
message?: string | undefined;
|
|
30
|
+
query?: string | undefined;
|
|
31
|
+
country?: string | undefined;
|
|
32
|
+
countryCode?: string | undefined;
|
|
33
|
+
region?: string | undefined;
|
|
34
|
+
regionName?: string | undefined;
|
|
35
|
+
city?: string | undefined;
|
|
36
|
+
zip?: string | undefined;
|
|
37
|
+
lat?: number | undefined;
|
|
38
|
+
lon?: number | undefined;
|
|
39
|
+
timezone?: string | undefined;
|
|
40
|
+
isp?: string | undefined;
|
|
41
|
+
org?: string | undefined;
|
|
42
|
+
as?: string | undefined;
|
|
43
|
+
asname?: string | undefined;
|
|
44
|
+
reverse?: string | undefined;
|
|
45
|
+
mobile?: boolean | undefined;
|
|
46
|
+
proxy?: boolean | undefined;
|
|
47
|
+
hosting?: boolean | undefined;
|
|
48
|
+
}, {
|
|
49
|
+
status: string;
|
|
50
|
+
message?: string | undefined;
|
|
51
|
+
query?: string | undefined;
|
|
52
|
+
country?: string | undefined;
|
|
53
|
+
countryCode?: string | undefined;
|
|
54
|
+
region?: string | undefined;
|
|
55
|
+
regionName?: string | undefined;
|
|
56
|
+
city?: string | undefined;
|
|
57
|
+
zip?: string | undefined;
|
|
58
|
+
lat?: number | undefined;
|
|
59
|
+
lon?: number | undefined;
|
|
60
|
+
timezone?: string | undefined;
|
|
61
|
+
isp?: string | undefined;
|
|
62
|
+
org?: string | undefined;
|
|
63
|
+
as?: string | undefined;
|
|
64
|
+
asname?: string | undefined;
|
|
65
|
+
reverse?: string | undefined;
|
|
66
|
+
mobile?: boolean | undefined;
|
|
67
|
+
proxy?: boolean | undefined;
|
|
68
|
+
hosting?: boolean | undefined;
|
|
69
|
+
}>;
|
|
28
70
|
/**
|
|
29
71
|
* TypeScript type inferred from the IPDetailSchema.
|
|
30
72
|
* Represents the expected structure of a successful ip-api.com response.
|
|
@@ -5,7 +5,13 @@ import { z } from 'zod';
|
|
|
5
5
|
export declare const IpAddressToolArgs: z.ZodObject<{
|
|
6
6
|
includeExtendedData: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
7
7
|
useHttps: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
8
|
-
}, z.
|
|
8
|
+
}, "strict", z.ZodTypeAny, {
|
|
9
|
+
useHttps: boolean;
|
|
10
|
+
includeExtendedData: boolean;
|
|
11
|
+
}, {
|
|
12
|
+
useHttps?: boolean | undefined;
|
|
13
|
+
includeExtendedData?: boolean | undefined;
|
|
14
|
+
}>;
|
|
9
15
|
/**
|
|
10
16
|
* TypeScript type inferred from the IpAddressToolArgs Zod schema.
|
|
11
17
|
* This represents the optional arguments passed to the tool handler and controller.
|
|
@@ -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.
|
|
14
|
+
exports.VERSION = '1.12.0';
|
|
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.
|
|
3
|
+
"version": "1.12.0",
|
|
4
4
|
"description": "TypeScript MCP server boilerplate with STDIO and HTTP transport support, CLI tools, and extensible architecture",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"cors": "^2.8.5",
|
|
80
80
|
"dotenv": "^17.2.1",
|
|
81
81
|
"express": "^5.1.0",
|
|
82
|
-
"zod": "^
|
|
82
|
+
"zod": "^3.25.67"
|
|
83
83
|
},
|
|
84
84
|
"publishConfig": {
|
|
85
85
|
"registry": "https://registry.npmjs.org/",
|
package/package.json.bak
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aashari/boilerplate-mcp-server",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.4",
|
|
4
4
|
"description": "TypeScript MCP server boilerplate with STDIO and HTTP transport support, CLI tools, and extensible architecture",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"cors": "^2.8.5",
|
|
80
80
|
"dotenv": "^17.2.1",
|
|
81
81
|
"express": "^5.1.0",
|
|
82
|
-
"zod": "^
|
|
82
|
+
"zod": "^3.25.67"
|
|
83
83
|
},
|
|
84
84
|
"publishConfig": {
|
|
85
85
|
"registry": "https://registry.npmjs.org/",
|