dynamic-shell-server vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
dynamic-shell-server by codelion | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 41 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 36 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具安全运维基建 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 15 个月前 | 本月 |
dynamic-shell-server · 概述
一个 Python MCP 服务器,通过动态批准和审计日志实现安全 shell 命令执行。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
dynamic-shell-server · 使用场景
- 通过 AI 助手安全执行 shell 命令,同时保持用户控制
- 为通过 AI 界面执行的所有系统管理任务创建审计跟踪
- 为开发人员提供受控方式执行构建和部署命令
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
dynamic-shell-server · 安装
安装
- 克隆此仓库:
git clone <repository-url>
cd dynamic-shell-server- 创建并激活虚拟环境:
python -m venv venv
source venv/bin/activate # 在 Windows 上使用:venv\Scripts\activate- 安装依赖:
pip install -r requirements.txtClaude Desktop 集成
- 打开 Claude Desktop 配置文件:
- macOS: ~/Library/Application Support/Claude/claude_desktop_config.json - Windows: %APPDATA%\Claude\claude_desktop_config.json
- 添加服务器配置:
{
"mcpServers": {
"shell": {
"command": "/absolute/path/to/.venv/bin/python",
"args": ["/absolute/path/to/dynamic_shell_server.py"]
}
}
}- 重启 Claude Desktop
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-everything