time vs go-mcp-mysql
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | go-mcp-mysql by Zhwt | |
|---|---|---|
| Stars | ★ 85,748 | ★ 53 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | DatabaseDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Go |
| Last commit | this month | 4 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
go-mcp-mysql · Summary
A production-ready Go-based MCP server for MySQL database operations with read-only mode and query plan checking.
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
go-mcp-mysql · Use cases
- Automating database queries and data analysis through AI assistants
- Enabling natural language interfaces for MySQL database operations
- Safely exploring database structures with read-only access before making changes
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"]
}
}
}go-mcp-mysql · Install
Installation
Option 1: Download Binary
- Get the latest [release](https://github.com/Zhwt/go-mcp-mysql/releases)
- Place it in your
$PATHor easily accessible location
Option 2: Build from Source
go install -v github.com/Zhwt/go-mcp-mysql@latestConfiguration
Add to Claude Desktop configuration:
{
"mcpServers": {
"mysql": {
"command": "go-mcp-mysql",
"args": [
"--host", "localhost",
"--user", "root",
"--pass", "password",
"--port", "3306",
"--db", "mydb"
]
}
}
}