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

13 lines (12 loc) 578 B
/** * Save raw API response to a file in /tmp/mcp/<project-name>/ * * @param url The URL that was called * @param method The HTTP method used * @param requestBody The request body (if any) * @param responseData The raw response data * @param statusCode The HTTP status code * @param durationMs The request duration in milliseconds * @returns The path to the saved file, or null if saving failed */ export declare function saveRawResponse(url: string, method: string, requestBody: unknown, responseData: unknown, statusCode: number, durationMs: number): string | null;