mysql_mcp_server vs time
Side-by-side comparison to help you pick between these two MCP servers.
mysql_mcp_server by designcomputer | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1,251 | ★ 85,748 |
| 30d uses | — | — |
| Score | 52 | 77 |
| Official | — | ✓ |
| Categories | DatabaseDeveloper ToolsSecurity | ProductivityDeveloper ToolsCommunication |
| Language | Python | TypeScript |
| Last commit | 12 mo ago | this month |
mysql_mcp_server · Summary
MCP server enabling secure interaction with MySQL databases through structured API.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mysql_mcp_server · Use cases
- Data analysis by AI models through secure SQL queries
- Database exploration and schema inspection for AI assistants
- Integration of MySQL data with AI-powered applications
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 · Install
Installation
Manual Installation
pip install mysql-mcp-serverInstalling via Smithery
To install MySQL MCP Server for Claude Desktop automatically via [Smithery](https://smithery.ai/server/mysql-mcp-server):
npx -y @smithery/cli install mysql-mcp-server --client claudeConfiguration
Set the following environment variables:
MYSQL_HOST=localhost # Database host
MYSQL_PORT=3306 # Optional: Database port (defaults to 3306 if not specified)
MYSQL_USER=your_username
MYSQL_PASSWORD=your_password
MYSQL_DATABASE=your_databaseWith Claude Desktop
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"mysql": {
"command": "uv",
"args": [
"--directory",
"path/to/mysql_mcp_server",
"run",
"mysql_mcp_server"
],
"env": {
"MYSQL_HOST": "localhost",
"MYSQL_PORT": "3306",
"MYSQL_USER": "your_username",
"MYSQL_PASSWORD": "your_password",
"MYSQL_DATABASE": "your_database"
}
}
}
}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"]
}
}
}