MCP Catalogs
Home

time vs mysql-mcp-server

Side-by-side comparison to help you pick between these two MCP servers.

time
by modelcontextprotocol
mysql-mcp-server
by TickHaiJun
Stars★ 85,748★ 31
30d uses
Score7741
Official
Categories
ProductivityDeveloper ToolsCommunication
DatabaseDeveloper ToolsAI / LLM Tools
LanguageTypeScriptJavaScript
Last committhis month9 mo ago

time · Summary

A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.

mysql-mcp-server · Summary

A Node.js MCP server that connects to MySQL databases, providing SQL query execution and metadata retrieval.

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 · Use cases

  • AI assistants that need to query or analyze MySQL data
  • Database administrators needing automated management tools
  • Data analysis workflows requiring SQL execution capability

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 · Install

Installation

  1. Clone the repository
git clone https://github.com/TickHaiJun/mysql-mcp-server.git
cd mysql-mcp-server
  1. Install dependencies
npm install
  1. Configure database connection (create .env file)
DB_HOST=localhost
DB_PORT=3306
DB_USER=root
DB_PASSWORD=yourpassword
DB_NAME=yourdatabase
  1. Start the server
node src/index.js

Claude Desktop Configuration

Add to Claude Desktop config:

{
  "mcpServers": {
    "mysql": {
      "command": "node",
      "args": ["/path/to/mysql-mcp-server/src/index.js"],
      "env": {
        "DB_HOST": "localhost",
        "DB_PORT": "3306",
        "DB_USER": "yourusername",
        "DB_PASSWORD": "yourpassword",
        "DB_NAME": "yourdatabase"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.