UNPKG

@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

12 lines (11 loc) 371 B
import { Command } from 'commander'; /** * Register Jira Projects CLI commands with the Commander program * @param program - The Commander program instance to register commands with * @throws Error if command registration fails */ declare function register(program: Command): void; declare const _default: { register: typeof register; }; export default _default;