@aashari/mcp-server-atlassian-jira
Version:
Node.js/TypeScript MCP server for Atlassian Jira. Equips AI systems (LLMs) with tools to list/get projects, search/get issues (using JQL/ID), and view dev info (commits, PRs). Connects AI capabilities directly into Jira project management and issue tracki
25 lines (24 loc) • 685 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 = '3.3.0';
/**
* Package name with scope
* Used for initialization and identification
*/
exports.PACKAGE_NAME = '@aashari/mcp-server-atlassian-jira';
/**
* CLI command name
* Used for binary name and CLI help text
*/
exports.CLI_NAME = 'mcp-atlassian-jira';