sequentialthinking vs postgresql-ssh-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
sequentialthinking by modelcontextprotocol | postgresql-ssh-mcp by Zlash65 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 6 |
| 30天用量 | — | — |
| 综合分 | 75 | 39 |
| 官方 | ✓ | — |
| 分类 | AI / LLM 工具开发者工具效率工具 | 数据库开发者工具安全 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 5 个月前 |
sequentialthinking · 概述
Sequential Thinking MCP 服务器通过逐步推理支持动态问题解决。
postgresql-ssh-mcp · 概述
PostgreSQL MCP 服务器,具有 SSH 隧道功能,可通过堡垒主机安全访问数据库。
sequentialthinking · 使用场景
- 规划复杂系统迁移并进行风险评估
- 需要逐步分析的调试生产环境问题
- 比较具有条件分支的架构选项
postgresql-ssh-mcp · 使用场景
- 安全地让 AI 助手连接到位于堡垒主机后面的 PostgreSQL 数据库
- 无需手动 SSH 隧道设置即可让 Claude Desktop 查询数据库
- 通过安全的 HTTP 端点为 ChatGPT 提供数据库访问
sequentialthinking · 安装
安装
**Claude Desktop**: 添加到您的 claude_desktop_config.json 文件中:
{
"mcpServers": {
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
}
}
}**VS Code**: 使用安装按钮或手动配置:
{
"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 · 安装
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 端点。