Skip to main content
Glama

JIRA MCP Server

comment.models.ts899 B
/** * JIRA comment models */ import type { ADFDocument, ADFNode, } from "@features/jira/shared/parsers/adf.parser"; /** * Comment author information */ export interface CommentAuthor { accountId: string; displayName: string | null; active?: boolean; accountType?: string; avatarUrls?: Record<string, string>; emailAddress?: string; timeZone?: string; self?: string; } /** * Comment information */ export interface Comment { id: string; body?: string | ADFDocument | ADFNode | null; author: CommentAuthor; created: string; updated: string; jsdPublic?: boolean; visibility?: { type: string; value: string; }; updateAuthor?: CommentAuthor; self?: string; } /** * Options for retrieving comments */ export interface GetCommentsOptions { issueKey: string; startAt?: number; maxResults?: number; orderBy?: string; expand?: string[]; }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Dsazz/mcp-jira'

If you have feedback or need assistance with the MCP directory API, please join our Discord server