@mseep/railway-mcp
Version:
Model Context Protocol server for Railway.app - Enables AI agents to manage Railway infrastructure through natural language
20 lines (19 loc) • 464 B
JavaScript
// Convert deployment status to emoji
export function getStatusEmoji(status) {
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 '❓';
}
}