MCP Catalogs
首页

filesystem-mcp-server vs everything

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

filesystem-mcp-server
by cyanheads
everything
by modelcontextprotocol
Stars★ 37★ 85,748
30天用量
综合分4177
官方
分类
本地文件系统开发者工具AI / LLM 工具
开发者工具AI / LLM 工具其它
实现语言TypeScriptTypeScript
最近提交10 个月前本月

filesystem-mcp-server · 概述

一个健壮的 TypeScript MCP 服务器,通过 STDIO 或 HTTP 传输方式使 AI 代理能够安全地与本地文件系统交互。

everything · 概述

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

filesystem-mcp-server · 使用场景

  • AI 助手读取和分析代码库以进行代码审查或文档生成
  • 自动文件管理系统,组织并重组文件层次结构
  • 开发环境中 AI 作为编码工作流的一部分需要修改文件

everything · 使用场景

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

filesystem-mcp-server · 安装

安装步骤

  1. **克隆仓库:**
git clone https://github.com/cyanheads/filesystem-mcp-server.git
cd filesystem-mcp-server
  1. **安装依赖:**
npm install
  1. **构建项目:**
npm run build
  1. **配置 Claude Desktop(示例):**

添加到 claude_desktop_config.json 文件:

{
  "mcpServers": {
    "filesystem": {
      "command": "node",
      "args": ["/path/to/filesystem-mcp-server/dist/index.js"],
      "env": {
        "FS_BASE_DIRECTORY": "/safe/workspace",
        "MCP_LOG_LEVEL": "info"
      }
    }
  }
}

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
对比内容由 README + GitHub 公开数据自动生成,定期更新。