everything vs ramibot
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | ramibot by RamiBotAI | |
|---|---|---|
| Stars | ★ 85,748 | ★ 20 |
| 30天用量 | — | — |
| 综合分 | 77 | 43 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 安全开发者工具AI / LLM 工具 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 2 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
ramibot · 概述
RamiBot 是一个本地优先的AI安全平台,集成了MCP支持红蓝队操作。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
ramibot · 使用场景
- 红队操作中LLM辅助漏洞扫描
- 蓝队分析中证据锁定报告生成
- 安全研究中Docker容器化工具执行
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-everythingramibot · 安装
安装
**要求:** Python 3.9+,Node.js 18+,npm,Docker Desktop
**一键安装(推荐):**
git clone <repository-url>
cd ramibot
# Linux / macOS
bash install.sh
# Windows
install.bat**手动安装:**
- 克隆并导航到仓库
- 后端:
cd backend; python -m venv .venv; .venv\Scripts\activate (Windows) 或 source .venv/bin/activate (Unix); pip install -r requirements.txt - 前端:
cd frontend; npm install - 运行:
bash start.sh(Unix) 或start.bat(Windows)
**设置:** 编辑 backend/settings.json 添加您的API密钥。