CTX vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
CTX by Alegau03 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 122 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 47 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具效率工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Rust | TypeScript |
| 最近提交 | 本月 | 本月 |
CTX · 概述
CTX是一个上下文运行时引擎,通过图记忆、紧凑任务包和缓存机制优化AI编码工作流程,减少token浪费。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
CTX · 使用场景
- 通过上下文压缩优化OpenCode工作流程,减少token使用
- 在图记忆中管理可重用的代码规则和模式,提高检索效率
- 创建紧凑的任务特定上下文包,减少发送给AI模型的不必要信息
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
CTX · 安装
使用以下方法之一安装CTX:
# 通过Cargo安装
cargo install ctx-cli
# 一行安装器
curl -fsSL https://raw.githubusercontent.com/Alegau03/CTX/main/scripts/install.sh | sh
# 通过npm安装
npm i -g @alegau/ctx-bin
# 通过Homebrew安装
brew tap Alegau03/ctx && brew install ctx要与OpenCode集成:
cd /path/to/your/project
ctx init
ctx index
ctx opencode install
opencode对于Claude Desktop集成,添加到claude_desktop_config.json:
{
"mcpServers": {
"ctx": {
"command": "ctx",
"args": ["mcp"]
}
}
}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