db-mcp-server vs time
Side-by-side comparison to help you pick between these two MCP servers.
db-mcp-server by FreePeak | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 377 | ★ 85,748 |
| 30d uses | — | — |
| Score | 52 | 77 |
| Official | — | ✓ |
| Categories | DatabaseDeveloper ToolsAI / LLM Tools | ProductivityDeveloper ToolsCommunication |
| Language | Go | TypeScript |
| Last commit | 1 mo ago | this month |
db-mcp-server · Summary
Multi-database MCP server connecting AI assistants to MySQL, PostgreSQL, SQLite and Oracle through standardized SQL interfaces.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
db-mcp-server · Use cases
- AI assistants querying multiple databases simultaneously for data analysis
- Automated database schema exploration and documentation generation
- Performance monitoring and optimization across heterogeneous database environments
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
db-mcp-server · Install
Installation
Docker Deployment
docker pull freepeak/db-mcp-server:latest
docker run -p 9092:9092 \
-v $(pwd)/config.json:/app/my-config.json \
-e TRANSPORT_MODE=sse \
-e CONFIG_PATH=/app/my-config.json \
freepeak/db-mcp-serverSource Code Installation
git clone https://github.com/FreePeak/db-mcp-server.git
cd db-mcp-server
make build
./bin/server -t sse -c config.jsonClaude Desktop Integration
Add to claude_desktop_config.json:
{
"mcpServers": {
"db-mcp-server": {
"command": "path/to/db-mcp-server/server",
"args": ["-t", "stdio", "-c", "/path/to/config.json"]
}
}
}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"]
}
}
}