MCP-PostgreSQL-Ops vs everything
Side-by-side comparison to help you pick between these two MCP servers.
MCP-PostgreSQL-Ops by call518 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 149 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | DatabaseDeveloper ToolsOps & Infra | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | this month | this month |
MCP-PostgreSQL-Ops · Summary
Comprehensive MCP server providing PostgreSQL DBA superpowers with 30+ tools for performance analysis, bloat detection, and monitoring.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
MCP-PostgreSQL-Ops · Use cases
- AI assistants monitoring PostgreSQL database health and performance
- Database administrators analyzing table bloat and maintenance needs
- Development teams investigating slow queries and optimization opportunities
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
MCP-PostgreSQL-Ops · Install
Installation
- Install via PyPI:
pip install mcp-postgresql-ops- Start the server:
mcp-server-postgresql-ops- Configure in Claude Desktop (add to claude_desktop_config.json):
{
"mcpServers": {
"postgresql-ops": {
"command": "mcp-server-postgresql-ops",
"args": []
}
}
}- Or using Docker Compose:
git clone https://github.com/call518/MCP-PostgreSQL-Ops.git
cd MCP-PostgreSQL-ops
docker-compose up -deverything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything