Skip to main content
Glama

MCP Atlassian Server

by phuc-nt
jira-interfaces.ts5.42 kB
/** * Jira API Interface * Define data structures for Jira API */ /** * Interface defining data types for Jira API */ /** * Define Jira user information */ export interface JiraUser { accountId: string; emailAddress?: string; displayName: string; active: boolean; timeZone?: string; accountType: string; avatarUrls?: { '48x48'?: string; '24x24'?: string; '16x16'?: string; '32x32'?: string; }; self: string; } /** * Define Jira project information */ export interface JiraProject { id: string; key: string; name: string; self: string; avatarUrls?: Record<string, string>; projectCategory?: { id: string; name: string; description?: string; }; simplified?: boolean; style?: string; isPrivate?: boolean; } /** * Define issue type */ export interface JiraIssueType { id: string; name: string; description?: string; iconUrl: string; subtask: boolean; avatarId?: number; entityId?: string; hierarchyLevel?: number; self: string; } /** * Define issue status */ export interface JiraStatus { id: string; name: string; description?: string; statusCategory: { id: number; key: string; name: string; colorName: string; self: string; }; self: string; } /** * Define custom field */ export interface JiraCustomField { id: string; key?: string; name?: string; custom: boolean; orderable: boolean; navigable: boolean; searchable: boolean; clauseNames?: string[]; schema?: { type: string; custom?: string; customId?: number; items?: string; }; } /** * Define issue priority */ export interface JiraPriority { id: string; name: string; iconUrl: string; self: string; } /** * Define creator/updater */ export interface JiraUserDetails { self: string; accountId: string; displayName: string; active: boolean; } /** * Define version/update information */ export interface JiraVersionInfo { by: JiraUserDetails; when: string; } /** * Define rich text content */ export interface JiraContent { type: string; content?: JiraContent[]; text?: string; attrs?: Record<string, any>; } /** * Define content format */ export interface JiraBody { type: string; version: number; content: JiraContent[]; } /** * Define comment */ export interface JiraComment { id: string; self: string; body: any; author: { accountId: string; displayName: string; emailAddress?: string; avatarUrls?: Record<string, string>; }; created: string; updated: string; } /** * Define comment list */ export interface JiraComments { comments: JiraComment[]; maxResults: number; total: number; startAt: number; } /** * Define transition status */ export interface JiraTransition { id: string; name: string; to: JiraStatus; hasScreen: boolean; isGlobal: boolean; isInitial: boolean; isConditional: boolean; isAvailable: boolean; } /** * Define transition result */ export interface JiraTransitionsResult { transitions: { id: string; name: string; to: { id: string; name: string; statusCategory?: { id: number; key: string; name: string; }; }; }[]; } /** * Định nghĩa thông tin tệp đính kèm */ export interface JiraAttachment { id: string; filename: string; author: JiraUserDetails; created: string; size: number; mimeType: string; content: string; thumbnail?: string; self: string; } /** * Định nghĩa issue trong Jira */ export interface JiraIssue { id: string; key: string; self: string; fields: { summary: string; description?: any; issuetype: { id: string; name: string; iconUrl?: string; }; project: { id: string; key: string; name: string; }; status?: { id: string; name: string; statusCategory?: { id: number; key: string; name: string; }; }; priority?: { id: string; name: string; }; labels?: string[]; assignee?: { accountId: string; displayName: string; emailAddress?: string; avatarUrls?: Record<string, string>; }; reporter?: { accountId: string; displayName: string; emailAddress?: string; avatarUrls?: Record<string, string>; }; created?: string; updated?: string; [key: string]: any; }; changelog?: { histories: { id: string; author: JiraUserDetails; created: string; items: { field: string; fieldtype: string; from?: string; fromString?: string; to?: string; toString?: string; }[]; }[]; }; } /** * Định nghĩa kết quả tìm kiếm */ export interface JiraSearchResult { startAt: number; maxResults: number; total: number; issues: JiraIssue[]; } /** * Định nghĩa tham số tìm kiếm */ export interface JiraSearchParams { jql: string; startAt?: number; maxResults?: number; fields?: string[]; validateQuery?: boolean; expand?: string[]; } /** * Định nghĩa tham số tạo issue */ export interface JiraCreateIssueParams { fields: { summary: string; issuetype: { id: string; }; project: { id: string; }; description?: any; [key: string]: any; }; update?: any; }

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/phuc-nt/mcp-atlassian-server'

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