@aashari/boilerplate-mcp-server
Version:
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 in
25 lines (24 loc) • 680 B
JavaScript
;
/**
* Application constants
*
* This file contains constants used throughout the application.
* Centralizing these values makes them easier to maintain and update.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.CLI_NAME = exports.PACKAGE_NAME = exports.VERSION = void 0;
/**
* Current application version
* This should match the version in package.json
*/
exports.VERSION = '1.10.5';
/**
* Package name with scope
* Used for initialization and identification
*/
exports.PACKAGE_NAME = '@aashari/boilerplate-mcp-server';
/**
* CLI command name
* Used for binary name and CLI help text
*/
exports.CLI_NAME = 'mcp-boilerplate';