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

11 lines (10 loc) 258 B
import { Command } from 'commander'; /** * Register Jira Comments CLI commands * @param program - Commander program */ declare function register(program: Command): void; declare const _default: { register: typeof register; }; export default _default;