time vs godoc-mcp
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | godoc-mcp by mrjoshuak | |
|---|---|---|
| Stars | ★ 85,748 | ★ 117 |
| 30d uses | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsAI / LLM ToolsFile System |
| Language | TypeScript | Go |
| Last commit | this month | 2 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
godoc-mcp · Summary
MCP server that provides efficient access to Go documentation to reduce token usage when AI coding agents work with Go projects.
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
godoc-mcp · Use cases
- Exploring Go projects by discovering packages and their purposes
- Understanding Go interfaces and API documentation for implementation guidance
- Efficiently analyzing Go codebases without loading entire source files into context
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"]
}
}
}godoc-mcp · Install
Installation
Go Install
go install github.com/mrjoshuak/godoc-mcp@latestDocker
docker pull ghcr.io/mrjoshuak/godoc-mcp:latestClaude Desktop
Add to your MCP configuration:
{
"mcpServers": {
"godoc": {
"command": "godoc-mcp"
}
}
}For local projects, set environment variables:
{
"mcpServers": {
"godoc": {
"command": "godoc-mcp",
"env": {
"GOPATH": "/path/to/go",
"GOMODCACHE": "/path/to/go/pkg/mod"
}
}
}
}