golemcore-bot vs time
Side-by-side comparison to help you pick between these two MCP servers.
golemcore-bot by alexk-dev | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 40 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | CommunicationDeveloper ToolsProductivity | ProductivityDeveloper ToolsCommunication |
| Language | Java | TypeScript |
| Last commit | this month | this month |
golemcore-bot · Summary
GolemCore Bot is an agent platform with MCP integration, enabling channel-connected agents with plugins and memory.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
golemcore-bot · Use cases
- Building chatbots for multiple channels (Telegram, web dashboard) with memory and delayed follow-ups
- Extending agent capabilities through plugins and MCP server integrations
- Creating inspectable AI agents with traceable execution and Hive-connected control flows
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
golemcore-bot · Install
Docker Installation
docker pull ghcr.io/alexk-dev/golemcore-bot:latest
docker run -d \
--name golemcore-bot \
--shm-size=256m \
--cap-add=SYS_ADMIN \
-e STORAGE_PATH=/app/workspace \
-e TOOLS_WORKSPACE=/app/sandbox \
-v golemcore-bot-data:/app/workspace \
-v golemcore-bot-sandbox:/app/sandbox \
-p 8080:8080 \
--restart unless-stopped \
ghcr.io/alexk-dev/golemcore-bot:latestOpen http://localhost:8080/dashboard and sign in with the temporary admin password from logs.
Claude Desktop Integration
Add to Claude Desktop configuration:
{
"mcpServers": {
"golemcore": {
"command": "docker",
"args": ["run", "--rm", "-i", "ghcr.io/alexk-dev/golemcore-bot:latest"]
}
}
}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"]
}
}
}