Skip to main content
Glama

JIRA MCP Server

user.models.ts926 B
/** * User Domain Models * * Core data structures for JIRA user domain objects */ /** * User models for the JIRA users domain */ /** * User information */ export interface User { accountId: string; displayName: string | null; active?: boolean; accountType?: string; avatarUrls?: Record<string, string>; emailAddress?: string; timeZone?: string; self?: string; } /** * User details with extended information */ export interface UserDetails extends User { locale?: string; groups?: { size: number; items: Array<{ name: string; self: string; }>; }; applicationRoles?: { size: number; items: Array<{ key: string; name: string; self: string; }>; }; expand?: string; } /** * Options for retrieving users */ export interface GetUsersOptions { query?: string; startAt?: number; maxResults?: number; includeInactive?: boolean; }

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