hasmcp-ce vs time
Side-by-side comparison to help you pick between these two MCP servers.
hasmcp-ce by hasmcp | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 27 | ★ 85,748 |
| 30d uses | — | — |
| Score | 40 | 77 |
| Official | — | ✓ |
| Categories | Developer Toolsapi-integrationOps & Infra | ProductivityDeveloper ToolsCommunication |
| Language | Go | TypeScript |
| Last commit | 4 mo ago | this month |
hasmcp-ce · Summary
HasMCP-CE converts API endpoints to MCP servers without code using OpenAPI specs.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
hasmcp-ce · Use cases
- Convert existing REST API endpoints to MCP servers for integration with AI models
- Create MCP servers for internal APIs without writing custom MCP implementations
- Manage multiple API endpoints as MCP tools with authentication and proxying
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
hasmcp-ce · Install
Installation
Using Docker (Recommended)
- Create directories:
mkdir hasmcp
cd hasmcp
mkdir -p _certs _storage
chmod 0777 _certs _storage- Download environment file:
wget https://github.com/hasmcp/hasmcp-ce/blob/main/backend/cmd/server/.env.example -O .env- Run with Docker:
docker stop hasmcp-ce || true; \
docker rm hasmcp-ce || true; \
docker image prune -f; \
docker pull hasmcp/hasmcp-ce:latest; \
docker run --env-file .env -p 80:80 -p 443:443 --name hasmcp-ce \
-v ./_certs:/_certs \
-v ./_storage:/_storage \
-d --restart always hasmcp/hasmcp-ce:latestClaude Desktop Configuration
Add to Claude Desktop config.json:
{
"mcpServers": {
"hasmcp": {
"command": "docker",
"args": ["run", "--rm", "hasmcp/hasmcp-ce: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"]
}
}
}