// Convert deployment status to emoji
export function getStatusEmoji(status: string): string {
switch (status.toUpperCase()) {
case 'SUCCESS':
return '✅';
case 'DEPLOYING':
case 'BUILDING':
case 'QUEUED':
return '🔄';
case 'FAILED':
case 'ERROR':
return '❌';
case 'REMOVED':
case 'CANCELED':
return '🚫';
default:
return '❓';
}
}
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/jason-tan-swe/railway-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server