cli-use vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
cli-use by JustVugg | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 16 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 42 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具效率工具本地文件系统 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 1 个月前 | 本月 |
cli-use · 概述
一个将任何MCP服务器转换为CLI的工具,可减少60-80%的令牌消耗,无需运行时依赖。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
cli-use · 使用场景
- 通过用高效的CLI替代MCP工具调用来减少AI工作流中的令牌消耗
- 从MCP服务器为shell脚本和自动化管道创建可重用的CLI接口
- 构建自动生成SKILL.md文档的代理友好型工具集
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
cli-use · 安装
git clone https://github.com/cli-use/cli-use.git
cd cli-use
pip install -e .对于Claude Desktop集成:
{
"mcpServers": {
"cli-use": {
"command": "python",
"args": ["-m", "cli_use.server"]
}
}
}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