@aashari/boilerplate-mcp-server 1.0.1 → 1.0.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 +7 -0
- package/dist/cli/index.js +1 -1
- package/dist/cli/index.js.bak +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.bak +1 -1
- package/dist/tools/ipaddress.tool.js +1 -1
- package/package.json +1 -1
- package/package.json.bak +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.0.2](https://github.com/aashari/boilerplate-mcp-server/compare/v1.0.1...v1.0.2) (2025-03-23)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* improve error logging with IP address details ([121f516](https://github.com/aashari/boilerplate-mcp-server/commit/121f51655517ddbea7d25968372bd6476f1b3e0f))
|
|
7
|
+
|
|
1
8
|
## [1.0.1](https://github.com/aashari/boilerplate-mcp-server/compare/v1.0.0...v1.0.1) (2025-03-23)
|
|
2
9
|
|
|
3
10
|
|
package/dist/cli/index.js
CHANGED
|
@@ -8,7 +8,7 @@ const commander_1 = require("commander");
|
|
|
8
8
|
const logger_util_js_1 = require("../utils/logger.util.js");
|
|
9
9
|
const ipaddress_cli_js_1 = __importDefault(require("./ipaddress.cli.js"));
|
|
10
10
|
// Get the version from package.json
|
|
11
|
-
const VERSION = '1.0.
|
|
11
|
+
const VERSION = '1.0.2'; // This should match the version in src/index.ts
|
|
12
12
|
const NAME = '@aashari/boilerplate-mcp-server';
|
|
13
13
|
const DESCRIPTION = 'A boilerplate Model Context Protocol (MCP) server implementation using TypeScript';
|
|
14
14
|
async function runCli(args) {
|
package/dist/cli/index.js.bak
CHANGED
|
@@ -8,7 +8,7 @@ const commander_1 = require("commander");
|
|
|
8
8
|
const logger_util_js_1 = require("../utils/logger.util.js");
|
|
9
9
|
const ipaddress_cli_js_1 = __importDefault(require("./ipaddress.cli.js"));
|
|
10
10
|
// Get the version from package.json
|
|
11
|
-
const VERSION = '1.0.
|
|
11
|
+
const VERSION = '1.0.1'; // This should match the version in src/index.ts
|
|
12
12
|
const NAME = '@aashari/boilerplate-mcp-server';
|
|
13
13
|
const DESCRIPTION = 'A boilerplate Model Context Protocol (MCP) server implementation using TypeScript';
|
|
14
14
|
async function runCli(args) {
|
package/dist/index.js
CHANGED
|
@@ -31,7 +31,7 @@ const index_js_1 = require("./cli/index.js");
|
|
|
31
31
|
const ipaddress_tool_js_1 = __importDefault(require("./tools/ipaddress.tool.js"));
|
|
32
32
|
const ipaddress_resource_js_1 = __importDefault(require("./resources/ipaddress.resource.js"));
|
|
33
33
|
// Define version constant for easier management and consistent versioning
|
|
34
|
-
const VERSION = '1.0.
|
|
34
|
+
const VERSION = '1.0.2';
|
|
35
35
|
let serverInstance = null;
|
|
36
36
|
let transportInstance = null;
|
|
37
37
|
async function startServer(mode = 'stdio') {
|
package/dist/index.js.bak
CHANGED
|
@@ -31,7 +31,7 @@ const index_js_1 = require("./cli/index.js");
|
|
|
31
31
|
const ipaddress_tool_js_1 = __importDefault(require("./tools/ipaddress.tool.js"));
|
|
32
32
|
const ipaddress_resource_js_1 = __importDefault(require("./resources/ipaddress.resource.js"));
|
|
33
33
|
// Define version constant for easier management and consistent versioning
|
|
34
|
-
const VERSION = '1.0.
|
|
34
|
+
const VERSION = '1.0.1';
|
|
35
35
|
let serverInstance = null;
|
|
36
36
|
let transportInstance = null;
|
|
37
37
|
async function startServer(mode = 'stdio') {
|
|
@@ -22,7 +22,7 @@ async function getIpAddressDetails(args, _extra) {
|
|
|
22
22
|
};
|
|
23
23
|
}
|
|
24
24
|
catch (error) {
|
|
25
|
-
logger_util_js_1.logger.error(`[src/tools/ipaddress.tool.ts@getIpAddressDetails] Error getting IP
|
|
25
|
+
logger_util_js_1.logger.error(`[src/tools/ipaddress.tool.ts@getIpAddressDetails] Error getting details for IP: ${args.ipAddress || 'current IP'}`, error);
|
|
26
26
|
return (0, error_util_js_1.formatErrorForMcpTool)(error);
|
|
27
27
|
}
|
|
28
28
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aashari/boilerplate-mcp-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "A TypeScript-based Model Context Protocol (MCP) server boilerplate for building AI-connected tools. Features IP lookup tools, CLI support, MCP Inspector integration, and extensible architecture for connecting Claude/Anthropic AI systems to external data sources.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
package/package.json.bak
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aashari/boilerplate-mcp-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "A TypeScript-based Model Context Protocol (MCP) server boilerplate for building AI-connected tools. Features IP lookup tools, CLI support, MCP Inspector integration, and extensible architecture for connecting Claude/Anthropic AI systems to external data sources.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|