We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/garimiddisuman/jira-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
// src/constants/Messages.ts
export class Messages {
static readonly LOADING_STORIES = "π Loading Jira stories...";
static readonly STORIES_LOADED = "β
Loaded";
static readonly FETCHING_STORIES = "π Fetching Jira stories from:";
static readonly NO_STORIES_FOUND = "β οΈ No stories found in Jira project:";
static readonly FETCH_ERROR = "β Failed to fetch Jira stories:";
static readonly STORY_NOT_FOUND = "β Story not found. Available stories:";
static readonly NO_MATCHING_STORIES = "β No stories found matching keyword";
static readonly NO_OPEN_STORIES =
"β
No open stories found - all stories are completed!";
static readonly NO_STATUS_STORIES = "β No stories found with status";
static readonly STORIES_REFRESHED =
"β
Stories refreshed successfully! Total stories:";
static readonly REFRESH_FAILED = "β Failed to refresh stories:";
static readonly FOUND_STORIES = "Found";
static readonly TOTAL_STORIES = "Total Stories:";
static readonly OPEN_STORIES = "Open Stories";
static readonly AVAILABLE_STATUSES = "Available statuses:";
static readonly UNKNOWN_ERROR = "Unknown error";
}