time vs mysql_mcp_server_pro
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | mysql_mcp_server_pro by wenb1n-dev | |
|---|---|---|
| Stars | ★ 85,748 | ★ 244 |
| 30d uses | — | — |
| Score | 77 | 46 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | DatabaseDeveloper ToolsMonitoring |
| Language | TypeScript | Python |
| Last commit | this month | 9 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mysql_mcp_server_pro · Summary
A comprehensive MCP server for MySQL databases with advanced query, analysis, and optimization capabilities.
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
mysql_mcp_server_pro · Use cases
- Database administrators monitoring MySQL health status and analyzing performance issues
- Developers executing secure SQL queries with proper access controls
- Data analysts optimizing slow queries and analyzing database indexes
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"]
}
}
}mysql_mcp_server_pro · Install
Installation
- Install the package:
pip install mysql_mcp_server_pro- Configure environment variables in a .env file:
MYSQL_HOST=localhost
MYSQL_PORT=3306
MYSQL_USER=your_username
MYSQL_PASSWORD=your_password
MYSQL_DATABASE=your_database
MYSQL_ROLE=readonly # or writer, admin- Start the service:
# SSE mode
mysql_mcp_server_pro --mode sse --envfile /path/to/.env
# Streamable Http mode (default)
mysql_mcp_server_pro --envfile /path/to/.env
# With OAuth authentication
mysql_mcp_server_pro --oauth trueClaude Desktop Configuration
Add to Claude Desktop config.json:
{
"mcpServers": {
"mysql": {
"command": "uvx",
"args": [
"--from",
"mysql_mcp_server_pro",
"mysql_mcp_server_pro",
"--mode",
"stdio"
],
"env": {
"MYSQL_HOST": "your_host",
"MYSQL_PORT": "3306",
"MYSQL_USER": "your_username",
"MYSQL_PASSWORD": "your_password",
"MYSQL_DATABASE": "your_database",
"MYSQL_ROLE": "admin"
}
}
}
}