We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tbreeding/jira-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
isFrontendIssue.ts•339 B
/**
* Determines if the issue is frontend-related based on its type
*/
export function isFrontendIssue(issueType: string): boolean {
const frontendTerms = ['ui', 'frontend', 'interface', 'design', 'ux', 'visual', 'screen']
return frontendTerms.some(function (term) {
return issueType.toLowerCase().includes(term.toLowerCase())
})
}