sequentialthinking vs postgresql-ssh-mcp
Side-by-side comparison to help you pick between these two MCP servers.
sequentialthinking by modelcontextprotocol | postgresql-ssh-mcp by Zlash65 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 6 |
| 30d uses | — | — |
| Score | 75 | 39 |
| Official | ✓ | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | DatabaseDeveloper ToolsSecurity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 5 mo ago |
sequentialthinking · Summary
Sequential Thinking MCP Server enables dynamic problem-solving through step-by-step reasoning.
postgresql-ssh-mcp · Summary
PostgreSQL MCP server with SSH tunneling for secure database access through bastion hosts.
sequentialthinking · Use cases
- Planning complex system migrations with risk assessment
- Debugging production issues requiring step-by-step analysis
- Comparing architecture options with conditional branching
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
sequentialthinking · Install
Installation
**Claude Desktop**: Add this to your claude_desktop_config.json:
{
"mcpServers": {
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
}
}
}**VS Code**: Use one of the installation buttons or manually configure with:
{
"servers": {
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
}
}
}**Docker**:
{
"mcpServers": {
"sequentialthinking": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"mcp/sequentialthinking"
]
}
}
}postgresql-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.