We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Kruglyak/railway-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
helpers.tsโข410 B
// 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 'โ';
}
}