everything vs cloudsword
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | cloudsword by wgpsec | |
|---|---|---|
| Stars | ★ 85,748 | ★ 604 |
| 30天用量 | — | — |
| 综合分 | 77 | 49 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 安全云存储开发者工具 |
| 实现语言 | TypeScript | Go |
| 最近提交 | 本月 | 3 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
cloudsword · 概述
云鉴是一个支持MCP协议的中文云安全工具。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
cloudsword · 使用场景
- 安全专业人员评估云基础设施漏洞
- 云管理员执行定期安全审计
- DevOps团队实施云安全最佳实践
everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingcloudsword · 安装
安装
使用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]
}
}
}