everything vs postgresql-ssh-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | postgresql-ssh-mcp by Zlash65 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 6 |
| 30天用量 | — | — |
| 综合分 | 77 | 39 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 数据库开发者工具安全 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 5 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
postgresql-ssh-mcp · 概述
PostgreSQL MCP 服务器,具有 SSH 隧道功能,可通过堡垒主机安全访问数据库。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
postgresql-ssh-mcp · 使用场景
- 安全地让 AI 助手连接到位于堡垒主机后面的 PostgreSQL 数据库
- 无需手动 SSH 隧道设置即可让 Claude Desktop 查询数据库
- 通过安全的 HTTP 端点为 ChatGPT 提供数据库访问
everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingpostgresql-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 端点。