sequentialthinking vs coolify-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
sequentialthinking by modelcontextprotocol | coolify-mcp by StuMason | |
|---|---|---|
| Stars | ★ 85,748 | ★ 372 |
| 30天用量 | — | — |
| 综合分 | 75 | 53 |
| 官方 | ✓ | — |
| 分类 | AI / LLM 工具开发者工具效率工具 | 运维基建开发者工具可观测性 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
sequentialthinking · 概述
Sequential Thinking MCP 服务器通过逐步推理支持动态问题解决。
coolify-mcp · 概述
全面的 MCP 服务器,包含 38 个优化工具,通过 AI 助理管理 Coolify 自托管 PaaS 平台。
sequentialthinking · 使用场景
- 规划复杂系统迁移并进行风险评估
- 需要逐步分析的调试生产环境问题
- 比较具有条件分支的架构选项
coolify-mcp · 使用场景
- 通过自然语言提示调试 Coolify 应用和基础设施
- 执行批量操作,如重启多个应用或更新环境变量
- 搜索 Coolify 文档并获取特定配置的上下文帮助
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"
]
}
}
}coolify-mcp · 安装
安装
前提条件
- Node.js >= 18
- 运行中的 Coolify 实例(已在 v4.0.0-beta.460 上测试)
- Coolify API 访问令牌(在 Coolify 设置 > API 中生成)
Claude Desktop
将以下内容添加到 Claude Desktop 配置文件(macOS 上为 ~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"coolify": {
"command": "npx",
"args": ["-y", "@masonator/coolify-mcp"],
"env": {
"COOLIFY_ACCESS_TOKEN": "your-api-token",
"COOLIFY_BASE_URL": "https://your-coolify-instance.com"
}
}
}
}Claude Code
claude mcp add coolify \
-e COOLIFY_BASE_URL="https://your-coolify-instance.com" \
-e COOLIFY_ACCESS_TOKEN="your-api-token" \
-- npx @masonator/coolify-mcp@latest