sequentialthinking vs cloudsword
并排对比,帮你在这两个 MCP server 之间做选择。
sequentialthinking by modelcontextprotocol | cloudsword by wgpsec | |
|---|---|---|
| Stars | ★ 85,748 | ★ 604 |
| 30天用量 | — | — |
| 综合分 | 75 | 49 |
| 官方 | ✓ | — |
| 分类 | AI / LLM 工具开发者工具效率工具 | 安全云存储开发者工具 |
| 实现语言 | TypeScript | Go |
| 最近提交 | 本月 | 3 个月前 |
sequentialthinking · 概述
Sequential Thinking MCP 服务器通过逐步推理支持动态问题解决。
cloudsword · 概述
云鉴是一个支持MCP协议的中文云安全工具。
sequentialthinking · 使用场景
- 规划复杂系统迁移并进行风险评估
- 需要逐步分析的调试生产环境问题
- 比较具有条件分支的架构选项
cloudsword · 使用场景
- 安全专业人员评估云基础设施漏洞
- 云管理员执行定期安全审计
- DevOps团队实施云安全最佳实践
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"
]
}
}
}cloudsword · 安装
安装
使用Homebrew
brew tap wgpsec/tap
brew install wgpsec/tap/cloudsword下载二进制文件
从以下地址下载:https://github.com/wgpsec/cloudsword/releases
MCP设置
- 以SSE模式启动CloudSword:
./cloudsword sse http://localhost:8080- 在Claude Desktop中,将以下内容添加到config.json:
{
"mcpServers": {
"cloudsword": {
"command": "http",
"args": ["localhost", 8080]
}
}
}