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) 284 B
import { Command } from 'commander'; /** * Register Atlassian Jira Search commands * * @param {Command} program - Commander program instance */ declare function register(program: Command): void; declare const _default: { register: typeof register; }; export default _default;