time vs ue5-mcp-bridge
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | ue5-mcp-bridge by Natfii | |
|---|---|---|
| Stars | ★ 85,748 | ★ 45 |
| 30d uses | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | JavaScript |
| Last commit | this month | this month |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
ue5-mcp-bridge · Summary
MCP server bridging AI assistants to Unreal Engine 5 editor, enabling direct manipulation of game development assets and workflows.
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
ue5-mcp-bridge · Use cases
- Automating repetitive UE5 setup tasks like creating Blueprints and configuring input bindings
- Directly manipulating game elements through natural language commands ('Spawn a point light at position 0,0,500')
- Rapid prototyping by describing desired functionality instead of navigating complex menus
- Querying UE5 API documentation context while working in the editor
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"]
}
}
}ue5-mcp-bridge · Install
Installation
- Clone the repository:
git clone https://github.com/Natfii/unrealclaude-mcp-bridge.git
cd unrealclaude-mcp-bridgenpm install- Configure your MCP client:
**Claude Desktop** (claude_desktop_config.json):
{
"mcpServers": {
"unreal": {
"command": "node",
"args": ["/path/to/unrealclaude-mcp-bridge/index.js"],
"env": {
"UNREAL_MCP_URL": "http://localhost:3000"
}
}
}
}**Claude Code** (~/.claude/settings.json):
{
"mcpServers": {
"unreal": {
"command": "node",
"args": ["/path/to/unrealclaude-mcp-bridge/index.js"],
"env": {
"UNREAL_MCP_URL": "http://localhost:3000"
}
}
}
}