everything vs postgresql-ssh-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | postgresql-ssh-mcp by Zlash65 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 6 |
| 30d uses | — | — |
| Score | 77 | 39 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | DatabaseDeveloper ToolsSecurity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 5 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
postgresql-ssh-mcp · Summary
PostgreSQL MCP server with SSH tunneling for secure database access through bastion hosts.
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
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
everything · 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-everythingpostgresql-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.