time vs postgresql-ssh-mcp
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | postgresql-ssh-mcp by Zlash65 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 6 |
| 30d uses | — | — |
| Score | 77 | 39 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | DatabaseDeveloper ToolsSecurity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 5 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
postgresql-ssh-mcp · Summary
PostgreSQL MCP server with SSH tunneling for secure database access through bastion hosts.
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
postgresql-ssh-mcp · Use cases
- Securely connecting to PostgreSQL databases behind bastion hosts for AI assistants
- Enabling Claude Desktop to query databases without manual SSH tunnel setup
- Providing database access to ChatGPT through a secure HTTP endpoint
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"]
}
}
}postgresql-ssh-mcp · Install
Claude Desktop (STDIO)
Add to your Claude Desktop config:
{
"mcpServers": {
"postgres": {
"command": "npx",
"args": ["-y", "@zlash65/postgresql-ssh-mcp"],
"env": {
"DATABASE_URI": "postgresql://user:password@localhost:5432/mydb"
}
}
}
}ChatGPT (HTTP Server)
DATABASE_URI="postgresql://user:pass@localhost:5432/mydb" npx @zlash65/postgresql-ssh-mcp-httpThen configure ChatGPT to connect to the HTTP endpoint.