MCP Catalogs
首页

everything vs code-assistant

并排对比,帮你在这两个 MCP server 之间做选择。

everything
by modelcontextprotocol
code-assistant
by stippi
Stars★ 85,748★ 163
30天用量
综合分7748
官方
分类
开发者工具AI / LLM 工具其它
开发者工具AI / LLM 工具效率工具
实现语言TypeScriptRust
最近提交本月本月

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

code-assistant · 概述

基于 Rust 的 AI 编程助手,提供 GUI、CLI、MCP 和 ACP 模式,实现自主代码分析与修改。

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

code-assistant · 使用场景

  • 跨多个项目的自动化代码重构和优化
  • 通过对话界面实现实时调试和问题解决
  • 通过 ACP 协议与 Zed 等 IDE 集成以增强编码辅助功能

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

code-assistant · 安装

安装

# 通过 rustup 安装 Rust 工具链
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

# 克隆并构建
git clone https://github.com/stippi/code-assistant
cd code-assistant
cargo build --release

Claude Desktop 集成

在 Claude Desktop 设置(**开发者**标签 → **编辑配置**)中配置:

{
  "mcpServers": {
    "code-assistant": {
      "command": "/path/to/code-assistant/target/release/code-assistant",
      "args": ["server"],
      "env": {
        "SHELL": "/bin/zsh"
      }
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。