time vs postgresql-ssh-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
time by modelcontextprotocol | postgresql-ssh-mcp by Zlash65 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 6 |
| 30天用量 | — | — |
| 综合分 | 77 | 39 |
| 官方 | ✓ | — |
| 分类 | 效率工具开发者工具沟通协作 | 数据库开发者工具安全 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 5 个月前 |
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
postgresql-ssh-mcp · 概述
PostgreSQL MCP 服务器,具有 SSH 隧道功能,可通过堡垒主机安全访问数据库。
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
postgresql-ssh-mcp · 使用场景
- 安全地让 AI 助手连接到位于堡垒主机后面的 PostgreSQL 数据库
- 无需手动 SSH 隧道设置即可让 Claude Desktop 查询数据库
- 通过安全的 HTTP 端点为 ChatGPT 提供数据库访问
time · 安装
安装选项
**使用 uv(推荐):**
uvx mcp-server-time**使用 PIP:**
pip install mcp-server-time
python -m mcp_server_time**为 Claude Desktop 配置:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}postgresql-ssh-mcp · 安装
Claude Desktop (STDIO)
添加到您的 Claude Desktop 配置中:
{
"mcpServers": {
"postgres": {
"command": "npx",
"args": ["-y", "@zlash65/postgresql-ssh-mcp"],
"env": {
"DATABASE_URI": "postgresql://user:password@localhost:5432/mydb"
}
}
}
}ChatGPT (HTTP 服务器)
DATABASE_URI="postgresql://user:pass@localhost:5432/mydb" npx @zlash65/postgresql-ssh-mcp-http然后配置 ChatGPT 连接到 HTTP 端点。