@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
15 lines (14 loc) • 518 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ListStatusesToolArgs = void 0;
const zod_1 = require("zod");
/**
* Zod schema definition for the jira_ls_statuses tool arguments.
*/
exports.ListStatusesToolArgs = zod_1.z.object({
projectKeyOrId: zod_1.z
.string()
.optional()
.describe('Optional project key or ID (e.g. "PROJ" or "10001") to filter statuses relevant to that project workflows.'),
// Pagination args can be added here if needed
});