MCP-PostgreSQL-Ops vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
MCP-PostgreSQL-Ops by call518 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 149 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 50 | 77 |
| 官方 | — | ✓ |
| 分类 | 数据库开发者工具运维基建 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 本月 | 本月 |
MCP-PostgreSQL-Ops · 概述
功能全面的 MCP 服务器,提供 30 多种 PostgreSQL 数据库管理工具,支持性能分析、膨胀检测和监控。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
MCP-PostgreSQL-Ops · 使用场景
- AI 助手监控 PostgreSQL 数据库健康状态和性能
- 数据库管理员分析表膨胀和维护需求
- 开发团队调查慢查询和优化机会
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
MCP-PostgreSQL-Ops · 安装
安装
- 通过 PyPI 安装:
pip install mcp-postgresql-ops- 启动服务器:
mcp-server-postgresql-ops- 在 Claude Desktop 中配置(添加到 claude_desktop_config.json):
{
"mcpServers": {
"postgresql-ops": {
"command": "mcp-server-postgresql-ops",
"args": []
}
}
}- 或使用 Docker Compose:
git clone https://github.com/call518/MCP-PostgreSQL-Ops.git
cd MCP-PostgreSQL-ops
docker-compose up -deverything · 安装
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-everything