time vs mcp-go
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | mcp-go by XiaoConstantine | |
|---|---|---|
| Stars | ★ 85,748 | ★ 10 |
| 30d uses | — | — |
| Score | 77 | 37 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | Go |
| Last commit | this month | 5 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mcp-go · Summary
Go implementation of MCP protocol with client and server components, supporting stdio and HTTP transports.
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
mcp-go · Use cases
- Building Go-based MCP servers that expose system tools as MCP capabilities
- Creating Go clients to integrate with existing MCP servers
- Developing context providers that bridge Go systems with LLM clients
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"]
}
}
}mcp-go · Install
go get github.com/XiaoConstantine/mcp-goFor Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"mcp-go": {
"command": "go",
"args": ["run", "github.com/XiaoConstantine/mcp-go"]
}
}
}