MCP Catalogs
首页

filesystem vs code-assistant

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

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

filesystem · 概述

功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。

code-assistant · 概述

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

filesystem · 使用场景

  • 使 AI 模型能够读取和写入项目文件进行开发
  • 允许 Claude 或其他 MCP 客户端浏览和分析代码库
  • 为内容生成提供对特定目录的安全沙盒访问

code-assistant · 使用场景

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

filesystem · 安装

安装

使用 NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

使用 Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code 扩展

点击 README 中的安装按钮直接在 VS Code 中安装。

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 公开数据自动生成,定期更新。