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

22 lines (21 loc) 591 B
import { ControllerResponse } from '../types/common.types.js'; /** * Search options interface * Defines the parameters for searching Jira content */ export interface SearchOptions { jql?: string; limit?: number; cursor?: string; } /** * Search for Jira issues using JQL * * @param {SearchOptions} options - Options for the search * @returns {Promise<ControllerResponse>} Formatted search results in Markdown */ declare function search(options?: SearchOptions): Promise<ControllerResponse>; declare const _default: { search: typeof search; }; export default _default;