MCP Catalogs
首页

wassette vs filesystem

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

wassette
by microsoft
filesystem
by modelcontextprotocol
Stars★ 888★ 85,748
30天用量
综合分5277
官方
分类
安全开发者工具AI / LLM 工具
本地文件系统开发者工具效率工具
实现语言RustTypeScript
最近提交1 个月前本月

wassette · 概述

Wassette 是一个面向安全性的运行时,通过 MCP 为 AI 代理扩展 WebAssembly 组件。

filesystem · 概述

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

wassette · 使用场景

  • 在安全沙箱环境中扩展 AI 代理的自定义工具
  • 在 AI 应用中运行 WebAssembly 组件作为 MCP 工具
  • 为 AI 系统创建可重用的、注重安全的工具

filesystem · 使用场景

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

wassette · 安装

安装

**快速开始(Linux/macOS):**

curl -fsSL https://raw.githubusercontent.com/microsoft/wassette/main/install.sh | bash

**其他平台:** 请参阅[安装指南](https://microsoft.github.io/wassette/latest/installation.html)了解 Windows、Homebrew、Nix、Docker 等平台的安装方法。

配置

安装后,将 Wassette 注册到您的 MCP 客户端中。例如,在 Claude Desktop 中:

{
  "mcpServers": {
    "wassette": {
      "command": "wassette",
      "args": []
    }
  }
}

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 中安装。

对比内容由 README + GitHub 公开数据自动生成,定期更新。