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

16 lines (15 loc) 467 B
import { z } from 'zod'; /** * Zod schema definition for the jira_ls_statuses tool arguments. */ export declare const ListStatusesToolArgs: z.ZodObject<{ projectKeyOrId: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { projectKeyOrId?: string | undefined; }, { projectKeyOrId?: string | undefined; }>; /** * Type inferred from the ListStatusesToolArgs Zod schema. */ export type ListStatusesToolArgsType = z.infer<typeof ListStatusesToolArgs>;