railway-mcp vs time
Side-by-side comparison to help you pick between these two MCP servers.
railway-mcp by jason-tan-swe | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 72 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsOps & InfraAI / LLM Tools | ProductivityDeveloper ToolsCommunication |
| Language | TypeScript | TypeScript |
| Last commit | 11 mo ago | this month |
railway-mcp · Summary
A TypeScript MCP server for Railway.app that enables infrastructure management through natural language commands.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
railway-mcp · Use cases
- Deploy and manage Railway services directly from AI assistants
- Automate infrastructure configuration and variable management
- Monitor deployments and access logs through natural language queries
time · Use cases
- Assisting with international meeting scheduling across time zones
- Providing real-time time information for location-based queries
- Enabling time conversion for travel planning and itineraries
railway-mcp · Install
Installation
Prerequisites
- Node.js 18+
- Railway account
- Railway API token (create at https://railway.app/account/tokens)
Quick Start
**Using Smithery (recommended):**
npx -y @smithery/cli install @jason-tan-swe/railway-mcp --client claude**Manual Installation for Claude Desktop:** Add to your config file (claude_desktop_config.json):
{
"mcpServers": {
"railway": {
"command": "npx",
"args": ["-y", "@jasontanswe/railway-mcp"],
"env": {
"RAILWAY_API_TOKEN": "your-railway-api-token-here"
}
}
}
}**Manual Installation for Cursor:**
- Go to Cursor settings > MCP section
- Click 'Add new MCP server'
- Name it 'railway-mcp'
- Command:
npx -y @jasontanswe/railway-mcp <RAILWAY_API_TOKEN>
time · Install
Installation Options
**Using uv (recommended):**
uvx mcp-server-time**Using PIP:**
pip install mcp-server-time
python -m mcp_server_time**Configure for Claude Desktop:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}