time vs SQL_MCP_Server
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | SQL_MCP_Server by pawankumar94 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 13 |
| 30d uses | — | — |
| Score | 77 | 36 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | DatabaseDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 11 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
SQL_MCP_Server · Summary
SQLGenius is an MCP server that converts natural language to SQL queries using Gemini Pro with BigQuery integration.
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
SQL_MCP_Server · Use cases
- Business analysts exploring data without writing SQL
- Data teams creating dashboards for non-technical stakeholders
- Developers prototyping queries before implementation
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"]
}
}
}SQL_MCP_Server · Install
Installation
- Clone the repository:
git clone https://github.com/pawankumar94/sql_mcp_server.git
cd sql_mcp_server- Install dependencies:
pip install -r requirements.txt- Set up environment variables:
cp .env.example .env
# Edit .env with your BigQuery credentials- Launch with Streamlit:
streamlit run streamlit_app.pyFor Claude Desktop integration, add this to your config.json:
{
"mcpServers": {
"sqlgenius": {
"command": "python",
"args": ["path/to/sql_mcp_server/sql_mcp_server.py"]
}
}
}