@aashari/boilerplate-mcp-server 1.4.4 → 1.4.6
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.d.ts +0 -5
- package/dist/index.js +0 -6
- package/dist/utils/constants.util.d.ts +1 -1
- package/dist/utils/constants.util.js +1 -1
- package/package.json +1 -1
- package/package.json.bak +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [1.4.6](https://github.com/aashari/boilerplate-mcp-server/compare/v1.4.5...v1.4.6) (2025-05-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* trigger release ([9abd0cc](https://github.com/aashari/boilerplate-mcp-server/commit/9abd0cc8fb28f9d8c430edb76833db2b4c825b3f))
|
|
7
|
+
|
|
8
|
+
## [1.4.5](https://github.com/aashari/boilerplate-mcp-server/compare/v1.4.4...v1.4.5) (2025-05-02)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* Remove re-exports from index.ts ([5175dcf](https://github.com/aashari/boilerplate-mcp-server/commit/5175dcfa2870bc5971a3d28da237aafb640b3b31))
|
|
14
|
+
|
|
1
15
|
## [1.4.4](https://github.com/aashari/boilerplate-mcp-server/compare/v1.4.3...v1.4.4) (2025-05-02)
|
|
2
16
|
|
|
3
17
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
|
|
3
|
-
import { Logger } from './utils/logger.util.js';
|
|
4
|
-
import { config } from './utils/config.util.js';
|
|
5
3
|
/**
|
|
6
4
|
* Start the MCP server with the specified transport mode
|
|
7
5
|
*
|
|
@@ -9,6 +7,3 @@ import { config } from './utils/config.util.js';
|
|
|
9
7
|
* @returns Promise that resolves to the server instance when started successfully
|
|
10
8
|
*/
|
|
11
9
|
export declare function startServer(mode?: 'stdio' | 'sse'): Promise<McpServer>;
|
|
12
|
-
export { config };
|
|
13
|
-
export { Logger };
|
|
14
|
-
export { VERSION, PACKAGE_NAME } from './utils/constants.util.js';
|
package/dist/index.js
CHANGED
|
@@ -4,14 +4,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
4
4
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
5
5
|
};
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.PACKAGE_NAME = exports.VERSION = exports.Logger = exports.config = void 0;
|
|
8
7
|
exports.startServer = startServer;
|
|
9
8
|
const mcp_js_1 = require("@modelcontextprotocol/sdk/server/mcp.js");
|
|
10
9
|
const stdio_js_1 = require("@modelcontextprotocol/sdk/server/stdio.js");
|
|
11
10
|
const logger_util_js_1 = require("./utils/logger.util.js");
|
|
12
|
-
Object.defineProperty(exports, "Logger", { enumerable: true, get: function () { return logger_util_js_1.Logger; } });
|
|
13
11
|
const config_util_js_1 = require("./utils/config.util.js");
|
|
14
|
-
Object.defineProperty(exports, "config", { enumerable: true, get: function () { return config_util_js_1.config; } });
|
|
15
12
|
const error_util_js_1 = require("./utils/error.util.js");
|
|
16
13
|
const constants_util_js_1 = require("./utils/constants.util.js");
|
|
17
14
|
const index_js_1 = require("./cli/index.js");
|
|
@@ -113,6 +110,3 @@ if (require.main === module) {
|
|
|
113
110
|
process.exit(1);
|
|
114
111
|
});
|
|
115
112
|
}
|
|
116
|
-
var constants_util_js_2 = require("./utils/constants.util.js");
|
|
117
|
-
Object.defineProperty(exports, "VERSION", { enumerable: true, get: function () { return constants_util_js_2.VERSION; } });
|
|
118
|
-
Object.defineProperty(exports, "PACKAGE_NAME", { enumerable: true, get: function () { return constants_util_js_2.PACKAGE_NAME; } });
|
|
@@ -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.
|
|
14
|
+
exports.VERSION = '1.4.6';
|
|
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.
|
|
3
|
+
"version": "1.4.6",
|
|
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",
|
package/package.json.bak
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aashari/boilerplate-mcp-server",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.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",
|